Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/interfaces/Animation/commitStyles-svg-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class=test-wait>
<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>