1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/1005405-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 + <body> 1.7 + <table id="thetable" width="150" style="top: -100px; position: relative;"> 1.8 + <tbody id="thebody"> 1.9 + <tr> 1.10 + <td>Hello</td> 1.11 + </tr> 1.12 + </tbody> 1.13 + </table> 1.14 + <script> 1.15 + function doTest() { 1.16 + document.getElementById("thetable").style.top="0px"; 1.17 + document.documentElement.className = ""; 1.18 + } 1.19 + document.addEventListener("MozReftestInvalidate", doTest, false); 1.20 + </script> 1.21 + </body> 1.22 +</html>