| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html
|
| deleted file mode 100644
|
| index 26679c6f97ba44be3412689dc739c7eb88bcb3ad..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="../../../http/tests/inspector/inspector-test.js"></script>
|
| -<script src="../../../http/tests/inspector/console-test.js"></script>
|
| -
|
| -<script>
|
| -function newWorld()
|
| -{
|
| - testRunner.evaluateScriptInIsolatedWorld(239, "console.log(42);\n//# sourceURL=239.js");
|
| -}
|
| -
|
| -function test()
|
| -{
|
| - InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, step2);
|
| - InspectorTest.evaluateInPage("newWorld()\n//# sourceURL=foo.js");
|
| -
|
| - var expectedScriptParsed = 2;
|
| - function step2(event)
|
| - {
|
| - var script = event.data;
|
| - InspectorTest.addResult(script.sourceURL + ":" + (script._isInternalScript ? "Internal script" : "Not internal script"));
|
| - --expectedScriptParsed;
|
| - if (!expectedScriptParsed)
|
| - InspectorTest.completeTest();
|
| - }
|
| -}
|
| -</script>
|
| -</head>
|
| -<body onload="runTest()">
|
| -<p>
|
| -Tests that injected script has isInternalScript flag.
|
| -</p>
|
| -</body>
|
| -</html>
|
|
|