summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1277272-1-inner.html
blob: 2ba52174dd158273b49b3d0a92e55c13976886c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<head>
<script>
function start() {
  var animation = document.body.animate([{marks: 'crop'},{marks: 'crop'}], 12);
  document.write('<html><body></body></html>');

  setTimeout(function() { animation.play(); }, 4);
  setTimeout(function() {
    animation.timeline = undefined;
    SpecialPowers.Cu.forceGC();
    window.top.continueTest();
  }, 5);
}
</script>
</head>
<body onload="start()"></body>
</html>