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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-event-causes.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/tracing/timeline-event-causes.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-event-causes.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-event-causes.html
index 1426ba2e99926d2c668f58026c62322fd7b50f93..3e71e6c0ae72a7d1366bb7382e7fdd3b52a1f98d 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-event-causes.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-event-causes.html
@@ -21,7 +21,7 @@ function test()
}
var source = setTimeoutFunction.toString();
- source += "\n//@ sourceURL=setTimeoutFunction.js";
+ source += "\n//# sourceURL=setTimeoutFunction.js";
InspectorTest.evaluateInPage(source);
InspectorTest.invokeAsyncWithTimeline("setTimeoutFunction", finishAndRunNextTest);
@@ -47,7 +47,7 @@ function test()
}
var source = requestAnimationFrameFunction.toString();
- source += "\n//@ sourceURL=requestAnimationFrameFunction.js";
+ source += "\n//# sourceURL=requestAnimationFrameFunction.js";
InspectorTest.evaluateInPage(source);
InspectorTest.invokeAsyncWithTimeline("requestAnimationFrameFunction", finishAndRunNextTest);
@@ -75,7 +75,7 @@ function test()
}
var source = styleRecalcFunction.toString();
- source += "\n//@ sourceURL=styleRecalcFunction.js";
+ source += "\n//# sourceURL=styleRecalcFunction.js";
InspectorTest.evaluateInPage(source);
InspectorTest.evaluateWithTimeline("styleRecalcFunction()", finishAndRunNextTest);
@@ -103,7 +103,7 @@ function test()
}
var source = layoutFunction.toString();
- source += "\n//@ sourceURL=layoutFunction.js";
+ source += "\n//# sourceURL=layoutFunction.js";
InspectorTest.evaluateInPage(source);
InspectorTest.evaluateWithTimeline("layoutFunction()", finishAndRunNextTest);

Powered by Google App Engine
This is Rietveld 408576698