[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:25:19 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 32b7981bd22223aa05522df3d63d995bf81239b5
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 3 02:18:04 2010 +0000

    2010-11-02  Jing Jin  <jjin at apple.com>
    
            Reviewed by Alexey Proskuryakov.
    
            Key down calls are not being sent to the application.
            https://bugs.webkit.org/show_bug.cgi?id=48867
    
            * UIProcess/API/mac/WKView.mm:
            (-[WKView keyDown:]): Call super when ignoring a key down.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71203 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index de9816f..5e4d35c 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-02  Jing Jin  <jjin at apple.com>
+
+        Reviewed by Alexey Proskuryakov.
+
+        Key down calls are not being sent to the application.
+        https://bugs.webkit.org/show_bug.cgi?id=48867
+
+        * UIProcess/API/mac/WKView.mm:
+        (-[WKView keyDown:]): Call super when ignoring a key down.
+
 2010-11-02  Anders Carlsson  <andersca at apple.com>
 
         Reviewed by John Sullivan.
diff --git a/WebKit2/UIProcess/API/mac/WKView.mm b/WebKit2/UIProcess/API/mac/WKView.mm
index 0557914..e558db5 100644
--- a/WebKit2/UIProcess/API/mac/WKView.mm
+++ b/WebKit2/UIProcess/API/mac/WKView.mm
@@ -396,6 +396,7 @@ EVENT_HANDLER(scrollWheel, Wheel)
     if (_data->_keyDownEventBeingResent == theEvent) {
         [_data->_keyDownEventBeingResent release];
         _data->_keyDownEventBeingResent = nil;
+        [super keyDown:theEvent];
         return;
     }
     _data->_page->handleKeyboardEvent(NativeWebKeyboardEvent(theEvent, self));

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list