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

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:28:57 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f87c6c9d2044b08ec66202984ec2b7358d022cd0
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Aug 2 21:44:48 2002 +0000

    	- fixed 3015705 -- Command-up-arrow and -down-arrow should go to
    	beginning and end of web page
    
            * WebView.subproj/WebView.m:
            (-[WebView keyDown:]):
    	Added checks for command key.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1725 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 10492ca..d10430d 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+2002-08-02  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3015705 -- Command-up-arrow and -down-arrow should go to
+	beginning and end of web page
+
+        * WebView.subproj/WebView.m:
+        (-[WebView keyDown:]):
+	Added checks for command key.
+
 2002-08-01  Richard Williamson (Local)  <rjw at apple.com>
 
         Effort towards 3014555 (going back to frame), but not fixed.  
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 10492ca..d10430d 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-08-02  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3015705 -- Command-up-arrow and -down-arrow should go to
+	beginning and end of web page
+
+        * WebView.subproj/WebView.m:
+        (-[WebView keyDown:]):
+	Added checks for command key.
+
 2002-08-01  Richard Williamson (Local)  <rjw at apple.com>
 
         Effort towards 3014555 (going back to frame), but not fixed.  
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index 67f12e8..336214f 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -237,7 +237,9 @@ enum {
                 callSuper = NO;
                 break;
             case NSUpArrowFunctionKey:
-                if ([event modifierFlags] & NSAlternateKeyMask) {
+                if ([event modifierFlags] & NSCommandKeyMask) {
+                    [self _scrollToTopLeft];
+                } else if ([event modifierFlags] & NSAlternateKeyMask) {
                     [self _pageUp];
                 } else {
                     [self _lineUp];
@@ -245,7 +247,9 @@ enum {
                 callSuper = NO;
                 break;
             case NSDownArrowFunctionKey:
-                if ([event modifierFlags] & NSAlternateKeyMask) {
+                if ([event modifierFlags] & NSCommandKeyMask) {
+                    [self _scrollToBottomLeft];
+                } else if ([event modifierFlags] & NSAlternateKeyMask) {
                     [self _pageDown];
                 } else {
                     [self _lineDown];

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list