retained-dl-wrap-list.html (418B)
1 <html class="reftest-wait"> 2 <body> 3 <div style="float:left; width:200px; height:200px; background-color: red"> 4 <div style="width:100px; height:100px;" id="hover"></div> 5 </div> 6 </body> 7 <script> 8 function doTest() { 9 document.getElementById("hover").style.backgroundColor = "blue"; 10 document.documentElement.removeAttribute("class"); 11 } 12 13 window.addEventListener("MozReftestInvalidate", doTest); 14 </script> 15 </html>