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