Source code
Revision control
Copy as Markdown
Other Tools
<!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>