Title: [94642] trunk/Source/WebKit/chromium
Revision
94642
Author
[email protected]
Date
2011-09-06 23:49:04 -0700 (Tue, 06 Sep 2011)

Log Message

[Chromium] Web Inspector: repair console sniffing for interactive ui tests
https://bugs.webkit.org/show_bug.cgi?id=67608

Reviewed by Pavel Feldman.

* src/js/Tests.js:
(.TestSuite.prototype.evaluateInConsole_):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (94641 => 94642)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-09-07 06:41:45 UTC (rev 94641)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-09-07 06:49:04 UTC (rev 94642)
@@ -1,3 +1,13 @@
+2011-09-05  Yury Semikhatsky  <[email protected]>
+
+        [Chromium] Web Inspector: repair console sniffing for interactive ui tests
+        https://bugs.webkit.org/show_bug.cgi?id=67608
+
+        Reviewed by Pavel Feldman.
+
+        * src/js/Tests.js:
+        (.TestSuite.prototype.evaluateInConsole_):
+
 2011-09-06  Eric Boren  <[email protected]>
 
         [Chromium] Modify WebTouchEvent structure to match WebCore::TouchEvent

Modified: trunk/Source/WebKit/chromium/src/js/Tests.js (94641 => 94642)


--- trunk/Source/WebKit/chromium/src/js/Tests.js	2011-09-07 06:41:45 UTC (rev 94641)
+++ trunk/Source/WebKit/chromium/src/js/Tests.js	2011-09-07 06:49:04 UTC (rev 94642)
@@ -627,7 +627,7 @@
     WebInspector.consoleView.prompt.text = code;
     WebInspector.consoleView.promptElement.dispatchEvent(TestSuite.createKeyEvent("Enter"));
 
-    this.addSniffer(WebInspector.ConsoleModel.prototype, "addMessage",
+    this.addSniffer(WebInspector.ConsoleView.prototype, "_appendConsoleMessage",
         function(commandResult) {
             callback(commandResult.toMessageElement().textContent);
         });
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to