25 lines
649 B
HTML
25 lines
649 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Test for css-animations running on the compositor thread with
|
|
scroll-timeline</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=1676780">Scroll-driven
|
|
animations generated by CSS</a>
|
|
<pre id="test"></pre>
|
|
<script>
|
|
'use strict';
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
// Open a new window to make sure we test this with scrolling attribute.
|
|
window.open('file_animations_omta_scroll.html');
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|