[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

mitz at apple.com mitz at apple.com
Thu Apr 8 00:43:42 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 334f49b3a5a213d096e4e14fde4ae777c71c3da2
Author: mitz at apple.com <mitz at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Dec 20 02:32:29 2009 +0000

    REGRESSION: Up/down arrow keys do not step numeric CSS property values
    https://bugs.webkit.org/show_bug.cgi?id=32776
    
    Reviewed by Darin Adler.
    
    * inspector/front-end/inspector.js:
    (WebInspector.documentKeyDown): Call the focused element’s
    handleKeyEvent method.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52397 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index aa3cd31..6054575 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2009-12-19  Dan Bernstein  <mitz at apple.com>
+
+        Reviewed by Darin Adler.
+
+        REGRESSION: Up/down arrow keys do not step numeric CSS property values
+        https://bugs.webkit.org/show_bug.cgi?id=32776
+
+        * inspector/front-end/inspector.js:
+        (WebInspector.documentKeyDown): Call the focused element’s
+        handleKeyEvent method.
+
 2009-12-19  Dirk Schulze  <krit at webkit.org>
 
         Reviewed by Nikolas Zimmermann.
diff --git a/WebCore/inspector/front-end/inspector.js b/WebCore/inspector/front-end/inspector.js
index 2c04ed6..947c7c2 100644
--- a/WebCore/inspector/front-end/inspector.js
+++ b/WebCore/inspector/front-end/inspector.js
@@ -630,6 +630,14 @@ WebInspector.documentClick = function(event)
 
 WebInspector.documentKeyDown = function(event)
 {
+    if (this.currentFocusElement && this.currentFocusElement.handleKeyEvent) {
+        this.currentFocusElement.handleKeyEvent(event);
+        if (event.handled) {
+            event.preventDefault();
+            return;
+        }
+    }
+
     if (this.currentPanel && this.currentPanel.handleShortcut) {
         this.currentPanel.handleShortcut(event);
         if (event.handled) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list