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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet.html

Issue 2486463005: [Reland] DevTools: Make WorkerThreadDebugger available for Worklets (Closed)
Patch Set: Change layout tests Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script>
6 function importWorklet()
7 {
8 animationWorklet.import('console-worklet-script.js');
9 }
10
11 function test()
12 {
13 InspectorTest.waitForConsoleMessages(4, finish);
14 InspectorTest.evaluateInPage("importWorklet();");
15
16 function finish()
17 {
18 InspectorTest.dumpConsoleMessages();
19 InspectorTest.completeTest();
20 }
21 }
22 </script>
23 </head>
24 <body onload="runTest()">
25 <p>Tests console output from AnimationWorklet.</p>
26 </body>
27 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698