1436189-1.html (454B)
1 <!DOCTYPE html> 2 <html lang="en" class="reftest-wait"> 3 <body> 4 <div style="opacity:0.5" id="hi"> 5 <div style="position:fixed; width:200px; height:200px; background-color:blue"></div> 6 </div> 7 8 <script> 9 10 function doTest() 11 { 12 var opacityElement = document.getElementById("hi"); 13 opacityElement.style.left = '100px'; 14 document.documentElement.removeAttribute("class"); 15 } 16 17 document.addEventListener("MozReftestInvalidate", doTest); 18 </script> 19 </body> 20 </html>