Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: LayoutTests/http/tests/inspector/console-test.js

Issue 16143005: monitor console command implemented. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved command implementation to C++. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/inspector/console-test.js
diff --git a/LayoutTests/http/tests/inspector/console-test.js b/LayoutTests/http/tests/inspector/console-test.js
index d6a7749e14085d02b89c63a703aa7e4f757744b1..9dedcb2d5c09521ccf4a65eb6f94fdb09a59bb50 100644
--- a/LayoutTests/http/tests/inspector/console-test.js
+++ b/LayoutTests/http/tests/inspector/console-test.js
@@ -88,4 +88,9 @@ InspectorTest.checkConsoleMessagesDontHaveParameters = function()
}
}
+InspectorTest.waitUntilMessageReceived = function(callback)
+{
+ InspectorTest.addSniffer(WebInspector.console, "addMessage", callback, false);
+}
+
}

Powered by Google App Engine
This is Rietveld 408576698