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