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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html

Issue 2954093003: [DevTools] Migrate inspector-protocol/runtime tests to new harness (Closed)
Patch Set: fail: Created 3 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: third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
deleted file mode 100644
index 85e6d04a7ee2d3262c440abdfb2a6c88553f4cb0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/runtime-compileScript.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<html>
-<head>
-<script type="text/javascript" src="../../http/tests/inspector-protocol/resources/inspector-protocol-test.js"></script>
-<script>
-function test()
-{
- var executionContextId;
-
- InspectorTest.sendCommand("Debugger.enable", {}, onDebuggerEnabled);
-
- function onDebuggerEnabled()
- {
- InspectorTest.sendCommand("Runtime.enable", {});
- InspectorTest.eventHandler["Debugger.scriptParsed"] = onScriptParsed;
- InspectorTest.eventHandler["Runtime.executionContextCreated"] = onExecutionContextCreated;
- }
-
- function onScriptParsed(messageObject)
- {
- if (!messageObject.params.url)
- return;
- InspectorTest.log("Debugger.scriptParsed: " + messageObject.params.url);
- }
-
- function onExecutionContextCreated(messageObject)
- {
- executionContextId = messageObject.params.context.id;
- testCompileScript("\n (", false, "foo1.js")
- .then(() => testCompileScript("239", true, "foo2.js"))
- .then(() => testCompileScript("239", false, "foo3.js"))
- .then(() => testCompileScript("testfunction f()\n{\n return 0;\n}\n", false, "foo4.js"))
- .then(() => InspectorTest.completeTest());
- }
-
- function testCompileScript(expression, persistScript, sourceURL)
- {
- InspectorTest.log("Compiling script: " + sourceURL);
- InspectorTest.log(" persist: " + persistScript);
- var callback;
- var promise = new Promise(resolver => callback = resolver);
- InspectorTest.sendCommand("Runtime.compileScript", {
- expression: expression,
- sourceURL: sourceURL,
- persistScript: persistScript,
- executionContextId: executionContextId
- }, onCompiled);
- return promise;
-
- function onCompiled(messageObject)
- {
- var result = messageObject.result;
- if (result.exceptionDetails) {
- result.exceptionDetails.exceptionId = 0;
- result.exceptionDetails.exception.objectId = 0;
- result.exceptionDetails.scriptId = 0;
- }
- if (result.scriptId)
- result.scriptId = 0;
- InspectorTest.logObject(result, "compilation result: ");
- InspectorTest.log("-----");
- callback();
- }
- }
-}
-</script>
-</head>
-<body onLoad="runTest();"></body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698