1453541-1.html (567B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <body> 4 5 <div id="empty" style="position:fixed; z-index: 4; left:200px; top:200px; width: 0px"> 6 <div style="position:fixed; width:400px; height: 400px; background-color:green; top: 200px; left: 200px"></div> 7 </div> 8 <div style="width:400px; height: 400px; background-color:blue"></div> 9 10 <script> 11 function doTest() { 12 document.getElementById("empty").style.left = "201px"; 13 document.documentElement.removeAttribute("class"); 14 } 15 document.addEventListener("MozReftestInvalidate", doTest); 16 </script> 17 </body> 18 </html>