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

Unified Diff: LayoutTests/inspector/console/console-trace-in-eval.html

Issue 15832007: DevTools: Add support for //# sourceURL (sourceMappingURL) comments and deprecate //@ ones (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaselined Created 7 years, 6 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: LayoutTests/inspector/console/console-trace-in-eval.html
diff --git a/LayoutTests/inspector/console/console-trace-in-eval.html b/LayoutTests/inspector/console/console-trace-in-eval.html
index 64ce9e1928d9643bd597086d2d51ca1a0556c1f3..cab63bf6e26b5ffa6577f9d063c482d894508b7c 100644
--- a/LayoutTests/inspector/console/console-trace-in-eval.html
+++ b/LayoutTests/inspector/console/console-trace-in-eval.html
@@ -23,7 +23,7 @@ function evalSource()
function doEvalSource()
{
setTimeout(function() {
- eval("(" + evalSource + ")()//@ sourceURL=evalURL.js");
+ eval("(" + evalSource + ")()//# sourceURL=evalURL.js");
}, 0);
}
@@ -44,7 +44,7 @@ function test()
<body onload="runTest()">
<p>
Tests that when console.trace is called in eval'ed script ending
-with //@ sourceURL=url it will dump a stack trace that will have
+with //# sourceURL=url it will dump a stack trace that will have
the url as the script source. <a href="https://bugs.webkit.org/show_bug.cgi?id=47252">Bug 47252.</a>
</p>

Powered by Google App Engine
This is Rietveld 408576698