1246046-1.html (552B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <head> 4 <meta charset=utf-8> 5 <title>Bug 1246046</title> 6 <style> 7 div { 8 width: 0px; 9 height: 100px; 10 background: green; 11 } 12 </style> 13 </head> 14 <body> 15 <div></div> 16 <script> 17 var target = document.querySelector("div"); 18 var anim = target.animate( 19 [ { width: "0px" }, { width: "200px" } ], 2000); 20 anim.pause(); 21 anim.currentTime = 1000; 22 document.documentElement.removeAttribute("class"); 23 </script> 24 </body> 25 </html>