1
0
Fork 0
firefox/testing/web-platform/tests/scroll-animations/crashtests/invalid-animation-range.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

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>