Title: [123748] trunk/Source/WebCore
Revision
123748
Author
pfeld...@chromium.org
Date
2012-07-26 08:21:58 -0700 (Thu, 26 Jul 2012)

Log Message

Web Inspector: replace "textInput" keyboard event listener breakpoint with "input"
https://bugs.webkit.org/show_bug.cgi?id=92384

Reviewed by Vsevolod Vlasov.

* inspector/front-end/BreakpointsSidebarPane.js:
(WebInspector.EventListenerBreakpointsSidebarPane):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (123747 => 123748)


--- trunk/Source/WebCore/ChangeLog	2012-07-26 15:10:00 UTC (rev 123747)
+++ trunk/Source/WebCore/ChangeLog	2012-07-26 15:21:58 UTC (rev 123748)
@@ -1,3 +1,13 @@
+2012-07-26  Pavel Feldman  <pfeld...@chromium.org>
+
+        Web Inspector: replace "textInput" keyboard event listener breakpoint with "input"
+        https://bugs.webkit.org/show_bug.cgi?id=92384
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/front-end/BreakpointsSidebarPane.js:
+        (WebInspector.EventListenerBreakpointsSidebarPane):
+
 2012-07-26  Jer Noble  <jer.no...@apple.com>
 
         Add a MediaPlayer API to retrieve the description of the current media engine.

Modified: trunk/Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js (123747 => 123748)


--- trunk/Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js	2012-07-26 15:10:00 UTC (rev 123747)
+++ trunk/Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js	2012-07-26 15:21:58 UTC (rev 123748)
@@ -503,7 +503,7 @@
     this._createCategory(WebInspector.UIString("Clipboard"), true, ["copy", "cut", "paste", "beforecopy", "beforecut", "beforepaste"]);
     this._createCategory(WebInspector.UIString("DOM Mutation"), true, ["DOMActivate", "DOMFocusIn", "DOMFocusOut", "DOMAttrModified", "DOMCharacterDataModified", "DOMNodeInserted", "DOMNodeInsertedIntoDocument", "DOMNodeRemoved", "DOMNodeRemovedFromDocument", "DOMSubtreeModified", "DOMContentLoaded"]);
     this._createCategory(WebInspector.UIString("Device"), true, ["deviceorientation", "devicemotion"]);
-    this._createCategory(WebInspector.UIString("Keyboard"), true, ["keydown", "keyup", "keypress", "textInput"]);
+    this._createCategory(WebInspector.UIString("Keyboard"), true, ["keydown", "keyup", "keypress", "input"]);
     this._createCategory(WebInspector.UIString("Load"), true, ["load", "unload", "abort", "error"]);
     this._createCategory(WebInspector.UIString("Mouse"), true, ["click", "dblclick", "mousedown", "mouseup", "mouseover", "mousemove", "mouseout", "mousewheel"]);
     this._createCategory(WebInspector.UIString("Timer"), false, ["setTimer", "clearTimer", "timerFired"]);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to