summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/interfaces/Animation/commitStyles-svg-crash.html
blob: 7fc1fef9ce27f673ecba0692e9819f47072751bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!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>