983084-1.html (662B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 function showItem() { 5 var el = document.getElementById("two"); 6 getComputedStyle(el).opacity; // flush styles 7 el.style.opacity = 1; 8 document.documentElement.removeAttribute("class"); 9 } 10 window.addEventListener("MozReftestInvalidate", showItem); 11 </script> 12 </head> 13 <body> 14 <div id="one" style="width:50px; height:50px; background-color:blue; position:absolute"></div> 15 <div id="two" style="width:500px; height:500px; background-color:red; opacity:0.99"></div> 16 </body> 17 </html>