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> |