1161320-2.html (387B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <head> 4 <meta charset=utf-8> 5 <style> 6 @keyframes a { } 7 body { 8 animation: a 100s; 9 } 10 </style> 11 12 <script> 13 function boom() 14 { 15 var anim = document.body.getAnimations()[0]; 16 anim.finish(); 17 anim.pause(); 18 anim.play(); 19 document.documentElement.removeAttribute("class"); 20 } 21 </script> 22 </head> 23 24 <body onload="setTimeout(boom, 100);"></body> 25 </html>