| 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>
|
|
|