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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html

Issue 1483053003: [DevTools] Removed deprecated sourceURL comment from tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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-ui/source-url-comment.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
index 8c03c32aadb5e10089251ac70f19c5ac0173365d..62ff6392249de4686cf1b9d8261adc9ed013c951 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/source-url-comment.html
@@ -13,11 +13,6 @@ function doEval()
eval("function keepAlive() {}\n//# sourceURL=evalURL.js");
}
-function doDeprecatedEval()
-{
- eval("function keepAlive() {}\n//@ sourceURL=deprecatedEvalURL.js");
-}
-
function doEvalWithNonRelativeURL()
{
eval("function relativeURLScript() {}\n//# sourceURL=/js/nonRelativeURL.js");
@@ -124,19 +119,6 @@ function test()
}
},
- function testDeprecatedSourceURLComment(next)
- {
- InspectorTest.showScriptSource("deprecatedEvalURL.js", didShowScriptSource);
- InspectorTest.evaluateInPage("setTimeout(doDeprecatedEval, 0)");
-
- function didShowScriptSource(sourceFrame)
- {
- InspectorTest.addResult(sourceFrame.textEditor.text());
- forEachScriptMatchingURL("deprecatedEvalURL.js", checkScriptSourceURL);
- next();
- }
- },
-
function testSourceURLAndMappingURLComment(next)
{
InspectorTest.showScriptSource("sourceURL.js", didShowScriptSource);
@@ -186,7 +168,7 @@ function test()
function checkScriptSourceURL(script)
{
InspectorTest.addResult("hasSourceURL: " + script.hasSourceURL);
- }
+ }
};
</script>

Powered by Google App Engine
This is Rietveld 408576698