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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html

Issue 2247483003: [DevTools] Removed isInternalScript flag from protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-internal-script-flag
Patch Set: Created 4 years, 4 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/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>

Powered by Google App Engine
This is Rietveld 408576698