Chromium Code Reviews

Unified Diff: third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.html

Issue 1470323003: [DevTools] Removed support deprecated (//@|/*@) source(URL|MappingURL)= (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.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.html
diff --git a/third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.html b/third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.html
index 4612cd6f2f7d92a4667ac3b0f2e9d81ae57ef373..723680f4362c327c1201fc21783018d921eadee6 100644
--- a/third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.html
+++ b/third_party/WebKit/ManualTests/inspector/bp-in-named-eval-after-reload.html
@@ -42,14 +42,14 @@ eval([
" doNothing();",
" console.log(new Date() + ': f1() called');",
"}",
- "//@sourceURL=f1.js"
+ "//# sourceURL=f1.js"
].join("\n"));
f2 = Function([
"",
" doNothing();",
" console.log(new Date() + ': f2() called');",
- "//@sourceURL=f2.js"
+ "//# sourceURL=f2.js"
].join("\n"));
var button = document.getElementById("button");

Powered by Google App Engine