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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet.html b/third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet.html
new file mode 100644
index 0000000000000000000000000000000000000000..3ce0b782675ae44d4a901aafd4f28bb08b366698
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-on-animation-worklet.html
@@ -0,0 +1,27 @@
+<html>
+<head>
+<script src="../../http/tests/inspector/inspector-test.js"></script>
+<script src="../../http/tests/inspector/console-test.js"></script>
+<script>
+function importWorklet()
+{
+ animationWorklet.import('console-worklet-script.js');
+}
+
+function test()
+{
+ InspectorTest.waitForConsoleMessages(4, finish);
+ InspectorTest.evaluateInPage("importWorklet();");
+
+ function finish()
+ {
+ InspectorTest.dumpConsoleMessages();
+ InspectorTest.completeTest();
+ }
+}
+</script>
+</head>
+<body onload="runTest()">
+<p>Tests console output from AnimationWorklet.</p>
+</body>
+</html>
« 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