summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1334583-1.html
blob: b4d4109f0d338cb67df06d43183d183c7a09c0ef (plain)
1
2
3
4
5
6
7
8
9
<div style="width: 200px; height: 200px; background: purple" id=div>
</div>
<script>
const animation = div.animate(
  [ { transform: "scale(1)" },
    { transform: "scale(2)" } ],
    { iterations: Infinity, duration: 512 } );
animation.currentTime = 2147483647;
</script>