503364-1a.html (620B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 function doTest() { 6 var div = document.createElement('div'); 7 div.setAttribute("style", "position: absolute; left: 20px; top: 20px; background: black; height: 20px; width: 20px"); 8 document.getElementById("t").appendChild(div); 9 document.documentElement.className = ""; 10 } 11 window.addEventListener("MozReftestInvalidate", doTest); 12 </script> 13 </head> 14 <body> 15 <table style="position: absolute; top: 100px; left: 100px;"> 16 <tr> 17 <td id="t"> 18 </td> 19 </tr> 20 </body> 21 </html>