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