1277272-1-inner.html (425B)
1 <!doctype html> 2 <head> 3 <script> 4 function start() { 5 var animation = document.body.animate([{marks: 'crop'},{marks: 'crop'}], 12); 6 document.write('<html><body></body></html>'); 7 8 setTimeout(function() { animation.play(); }, 4); 9 setTimeout(function() { 10 animation.timeline = undefined; 11 12 SpecialPowers.Cu.forceGC(); 13 window.top.continueTest(); 14 }, 5); 15 } 16 </script> 17 </head> 18 <body onload="start()"></body> 19 </html>