1413073-1.html (482B)
1 <html class="reftest-wait"> 2 <body> 3 <div style="position:fixed; width:200px; height:200px; background-color:blue"> 4 <div style="position:fixed; width:200px; height:200px; left:400px; background-color:red" id="inner"></div> 5 </div> 6 </body> 7 <script> 8 function doTest() { 9 var d = document.getElementById("inner"); 10 d.style.backgroundColor = "green"; 11 document.documentElement.className = ""; 12 } 13 window.addEventListener("MozReftestInvalidate", doTest); 14 </script> 15 </html>