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

eric at webkit.org eric at webkit.org
Wed Apr 7 23:19:32 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 95dfdb8176eb00e379966858e47494b33e1d76dd
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 3 14:48:25 2009 +0000

    2009-11-03  Keishi Hattori  <casey.hattori at gmail.com>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: monitorEvent should be monitorEvents
            https://bugs.webkit.org/show_bug.cgi?id=31042
    
            * inspector/front-end/InjectedScript.js:
            (InjectedScript._ensureCommandLineAPIInstalled):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50453 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 2c88687..758c699 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-11-03  Keishi Hattori  <casey.hattori at gmail.com>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: monitorEvent should be monitorEvents
+        https://bugs.webkit.org/show_bug.cgi?id=31042
+
+        * inspector/front-end/InjectedScript.js:
+        (InjectedScript._ensureCommandLineAPIInstalled):
+
 2009-11-02  Tor Arne Vestbø  <tor.arne.vestbo at nokia.com>
 
         Rubber-stamped by Antti Koivisto.
diff --git a/WebCore/inspector/front-end/InjectedScript.js b/WebCore/inspector/front-end/InjectedScript.js
index 32687d5..3ba09a1 100644
--- a/WebCore/inspector/front-end/InjectedScript.js
+++ b/WebCore/inspector/front-end/InjectedScript.js
@@ -943,7 +943,7 @@ InjectedScript._ensureCommandLineAPIInstalled = function(evalFunction, evalObjec
             } \
             return te; \
         }, \
-        monitorEvent: function(o, t) { \
+        monitorEvents: function(o, t) { \
             if (!o || !o.addEventListener || !o.removeEventListener) \
                 return; \
             t = console._inspectorCommandLineAPI._normalizeEventTypes(t); \
@@ -952,7 +952,7 @@ InjectedScript._ensureCommandLineAPIInstalled = function(evalFunction, evalObjec
                 o.addEventListener(t[i], console._inspectorCommandLineAPI._logEvent, false); \
             } \
         }, \
-        unmonitorEvent: function(o, t) { \
+        unmonitorEvents: function(o, t) { \
             if (!o || !o.removeEventListener) \
                 return; \
             t = console._inspectorCommandLineAPI._normalizeEventTypes(t); \

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list