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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 14:28:06 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 40b61a2cc42cb287e2da84622197e6858347402d
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Oct 10 04:17:05 2010 +0000

    2010-10-09  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Alexey Proskuryakov.
    
            Exception in committers-autocomplete in Firefox
            https://bugs.webkit.org/show_bug.cgi?id=47456
    
            Remove dependency on a WebKit-only quirk.  IMHO, this quirk is bad for
            the long-term health of the web, but that's a discussion for another
            patch.
    
            * committers-autocomplete.js:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69464 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/BugsSite/ChangeLog b/BugsSite/ChangeLog
index c30095e..b69ea66 100644
--- a/BugsSite/ChangeLog
+++ b/BugsSite/ChangeLog
@@ -1,3 +1,16 @@
+2010-10-09  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Alexey Proskuryakov.
+
+        Exception in committers-autocomplete in Firefox
+        https://bugs.webkit.org/show_bug.cgi?id=47456
+
+        Remove dependency on a WebKit-only quirk.  IMHO, this quirk is bad for
+        the long-term health of the web, but that's a discussion for another
+        patch.
+
+        * committers-autocomplete.js:
+
 2010-10-08  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Oliver Hunt.
diff --git a/BugsSite/committers-autocomplete.js b/BugsSite/committers-autocomplete.js
index c9fd50d..5dba7f3 100644
--- a/BugsSite/committers-autocomplete.js
+++ b/BugsSite/committers-autocomplete.js
@@ -277,12 +277,12 @@ WebKitCommitters = (function() {
             menu.addEventListener('mousedown', function(e) {
                 selectItem(getIndex(e.target));
                 e.preventDefault();
-            });
+            }, false);
 
             menu.addEventListener('mouseup', function(e) {
                 if (m_selectedIndex == getIndex(e.target))
                     insertSelectedItem();
-            });
+            }, false);
             
             m_menus[name] = menu;
         }
@@ -372,13 +372,13 @@ WebKitCommitters = (function() {
         if (!getMenu()) {
             createMenu(m_focusedInput.name);
             m_focusedInput.setAttribute('autocomplete', 'off');
-            m_focusedInput.addEventListener('keyup', handleKeyUp);
-            m_focusedInput.addEventListener('keydown', handleKeyDown);
+            m_focusedInput.addEventListener('keyup', handleKeyUp, false);
+            m_focusedInput.addEventListener('keydown', handleKeyDown, false);
             m_focusedInput.addEventListener('blur', function() {
                 showMenu(false);
                 m_prefix = null;
                 m_selectedIndex = 0;
-            });
+            }, false);
         }
         
         updateMenu();
@@ -391,7 +391,7 @@ WebKitCommitters = (function() {
                 break;
             }
         }
-    });
+    }, false);
 
     WebKitCommitters.getCommitters(function (committers) {
         m_committers = committers;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list