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

Unified Diff: test/inspector/runtime/console-line-and-column.js

Issue 2369753004: [inspector] added inspector test runner [part 5] (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/runtime/console-line-and-column.js
diff --git a/test/inspector/runtime/console-line-and-column.js b/test/inspector/runtime/console-line-and-column.js
new file mode 100644
index 0000000000000000000000000000000000000000..c370f24ea95e1b20854250a32558cb12cf221a86
--- /dev/null
+++ b/test/inspector/runtime/console-line-and-column.js
@@ -0,0 +1,35 @@
+// Copyright 2016 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+InspectorTest.sendCommand("Runtime.enable", {});
+
+addConsoleMessagePromise("console.log(239)")
+ .then(dumpMessage)
+ .then(() => addConsoleMessagePromise("var l = console.log;\n l(239)"))
+ .then(dumpMessage)
+ .then(() => InspectorTest.completeTest());
+
+function addConsoleMessagePromise(expression)
+{
+ var cb;
+ var p = new Promise((resolver) => cb = resolver);
+ InspectorTest.eventHandler["Runtime.consoleAPICalled"] = (messageObject) => cb(messageObject);
+ InspectorTest.sendCommand("Runtime.evaluate", { expression: expression });
+ return p;
+}
+
+function dumpMessage(messageObject)
+{
+ var msg = messageObject.params;
+ delete msg.executionContextId;
+ delete msg.args;
+ delete msg.timestamp;
+ for (var frame of msg.stackTrace.callFrames)
+ frame.scriptId = 0;
+ if (!frame.functionName)
+ frame.functionName = "(anonymous)";
+ if (!frame.url)
+ frame.url = "(empty)";
+ InspectorTest.logObject(msg);
+}

Powered by Google App Engine
This is Rietveld 408576698