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

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

Issue 2881443003: Worklet: Move tests for Worklet in inspector/console/ to http/tests/inspector/console/ (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
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 paintWorklet.addModule('console-worklet-script.js');
9 }
10
11 function test()
12 {
13 InspectorTest.waitForConsoleMessages(3, 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 PaintWorklet.</p>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698