594624-1.html (911B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 function doTest() { 5 var x = document.getElementById('TB_overlay'); 6 x.style.display = 'block'; 7 document.documentElement.removeAttribute('class'); 8 } 9 document.addEventListener("MozReftestInvalidate", doTest); 10 </script> 11 <style> 12 #TB_window 13 { 14 border: 1px solid red; 15 position: fixed; 16 top: 0; 17 left: 0; 18 } 19 20 #TB_overlay { 21 height: 200px; 22 left: 10px; 23 position: fixed; 24 top: 80px; 25 width: 200px; 26 display: none; 27 28 opacity: 0.1; 29 30 background-color: green; 31 } 32 </style> 33 </head> 34 <body> 35 SOME CONTENT 36 <div id="TB_overlay"> 37 </div> 38 <div id="TB_window"></div> 39 40 </body> 41 </html>