Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /scroll-animations/crashtests/invalid-animation-range.html - WPT Dashboard Interop Dashboard
<!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>