1
0
Fork 0
firefox/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-svg-crash.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

12 lines
308 B
HTML

<!DOCTYPE html>
<html class=test-wait>
<link rel=help href="https://crbug.com/1385691">
<svg id=svg></svg>
<script>
let anim = svg.animate({'svg-viewBox': '1 1 1 1'}, 1);
anim.ready.then(() => {
anim.commitStyles();
document.documentElement.classList.remove('test-wait');
});
</script>
</html>