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

Unified Diff: test/inspector/protocol-test.js

Issue 2381693002: [inspector] added a test for crash in wrapping async evaluate result (Closed)
Patch Set: addressed comments Created 4 years, 3 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: test/inspector/protocol-test.js
diff --git a/test/inspector/protocol-test.js b/test/inspector/protocol-test.js
index 1981a8f6f5fb15424b9537b08700ca3cd099dd73..521330db9600fd002ab8ec7b7c84df1b724c93f0 100644
--- a/test/inspector/protocol-test.js
+++ b/test/inspector/protocol-test.js
@@ -133,6 +133,13 @@ InspectorTest.logObject = function(object, title)
InspectorTest.log(lines.join("\n"));
}
+InspectorTest.logMessage = function(message)
+{
+ message.id = 0;
+ InspectorTest.logObject(message);
+ return message;
+}
+
InspectorTest.completeTest = quit.bind(null);
InspectorTest.evaluateInPage = function(string, callback)

Powered by Google App Engine
This is Rietveld 408576698