[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:47:59 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 706ce921f364aa1b2c592d4de189fc62926b4695
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 21 20:41:50 2003 +0000

            Reviewed by Dave.
    
            - fixed 3316867 -- tabbing to textarea below visible part of page doesn't scroll down
    
            * kwq/KWQTextArea.mm: (-[KWQTextAreaTextView becomeFirstResponder]): Added call to
            _KWQ_scrollFrameToVisible to match the one in KWQTextField.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4681 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index d09db0f..ad134f4 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2003-07-21  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave.
+
+        - fixed 3316867 -- tabbing to textarea below visible part of page doesn't scroll down
+
+        * kwq/KWQTextArea.mm: (-[KWQTextAreaTextView becomeFirstResponder]): Added call to
+        _KWQ_scrollFrameToVisible to match the one in KWQTextField.
+
 2003-07-21  Dave Hyatt  <hyatt at apple.com>
 
 	Fix removeAttributeNode.  This is David Faure's patch.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d09db0f..ad134f4 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-07-21  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave.
+
+        - fixed 3316867 -- tabbing to textarea below visible part of page doesn't scroll down
+
+        * kwq/KWQTextArea.mm: (-[KWQTextAreaTextView becomeFirstResponder]): Added call to
+        _KWQ_scrollFrameToVisible to match the one in KWQTextField.
+
 2003-07-21  Dave Hyatt  <hyatt at apple.com>
 
 	Fix removeAttributeNode.  This is David Faure's patch.
diff --git a/WebCore/kwq/KWQTextArea.mm b/WebCore/kwq/KWQTextArea.mm
index 4449387..8da18ff 100644
--- a/WebCore/kwq/KWQTextArea.mm
+++ b/WebCore/kwq/KWQTextArea.mm
@@ -25,8 +25,9 @@
 
 #import "KWQTextArea.h"
 
-#import "KWQTextEdit.h"
 #import "KWQKHTMLPart.h"
+#import "KWQNSViewExtras.h"
+#import "KWQTextEdit.h"
 #import "WebCoreBridge.h"
 
 /*
@@ -493,6 +494,7 @@ static NSString *WebContinuousSpellCheckingEnabled = @"WebContinuousSpellCheckin
         if ([[self window] keyViewSelectionDirection] != NSDirectSelection) {
             [self selectAll:nil];
         }
+        [self _KWQ_scrollFrameToVisible];
 	[self _KWQ_setKeyboardFocusRingNeedsDisplay];
 	QFocusEvent event(QEvent::FocusIn);
 	const_cast<QObject *>(widget->eventFilterObject())->eventFilter(widget, &event);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list