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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/dont-report-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/dont-report-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/dont-report-injected-script.html
similarity index 79%
rename from third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html
rename to third_party/WebKit/LayoutTests/inspector/sources/debugger/dont-report-injected-script.html
index 26679c6f97ba44be3412689dc739c7eb88bcb3ad..c7bf0e2c79e99adbb0ca423d6968d3da5f10946a 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/internal-script-flag-for-injected-script.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/dont-report-injected-script.html
@@ -18,7 +18,7 @@ function test()
function step2(event)
{
var script = event.data;
- InspectorTest.addResult(script.sourceURL + ":" + (script._isInternalScript ? "Internal script" : "Not internal script"));
+ InspectorTest.addResult(script.sourceURL);
--expectedScriptParsed;
if (!expectedScriptParsed)
InspectorTest.completeTest();
@@ -28,7 +28,7 @@ function test()
</head>
<body onload="runTest()">
<p>
-Tests that injected script has isInternalScript flag.
+Tests that injected script isn't reported to frontend.
</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698