mirror of
https://github.com/servo/servo.git
synced 2025-10-13 23:10:20 +01:00
13 lines
356 B
HTML
13 lines
356 B
HTML
<!DOCTYPE html>
|
|
<title>Invalid animation range</title>
|
|
<body onload="runTest()">
|
|
<div id="target"></div>
|
|
</body>
|
|
<script src="../../web-animations/testcommon.js"></script>
|
|
<script>
|
|
async function runTest() {
|
|
const anim = target.animate(undefined, {rangeStart: "initial" });
|
|
await waitForNextFrame();
|
|
await waitForNextFrame();
|
|
}
|
|
</script>
|