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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging.html

Issue 2171973002: [WIP][worklets] ThreadedWorkletGlobalScope + AnimationWorkletGlobalScope Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ...... Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/worker-debugging.html b/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging.html
similarity index 73%
copy from third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/worker-debugging.html
copy to third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging.html
index 3d2ba462122c4f31328ba8877704205fbcf7f7e1..5e1314bb1afc2762d89aa1c98eb0643f367d1bc5 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/worker-debugging.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging.html
@@ -6,9 +6,9 @@
<script>
-function installWorker()
+function importWorklet()
{
- new Worker("resources/worker-source.js");
+ animationWorklet.import("resources/worker-source.js");
}
function test()
@@ -17,7 +17,7 @@ function test()
function step1()
{
- InspectorTest.evaluateInPage("installWorker()");
+ InspectorTest.evaluateInPage("importWorklet()");
InspectorTest.waitUntilPaused(paused);
}
@@ -33,6 +33,6 @@ function test()
</head>
<body onload="runTest()">
-<p>Tests stopping in debugger in the worker.</p>
+<p>Tests stopping in debugger in the animation worklet.</p>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/animation-worklet-debugging-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698