summaryrefslogtreecommitdiffstats
path: root/layout/reftests/position-dynamic-changes/relative/percent.html
blob: 4f192c68a8ca639f5f0351314fd2851b55ac139d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <link rel="stylesheet" type="text/css" href="style.css">
  </head>
  <body>
    <div id="container" style="border-width: 10px; padding: 50px"
      >surrounding <span id="rel"
        style="left: 0; top: 0;"
        >position&#10;relative</span> text</div>
    <script>
      document.addEventListener("MozReftestInvalidate", function() {
        var rel = document.getElementById("rel");
        rel.style.top = "50%";
        rel.style.left = "50%";
        document.documentElement.removeAttribute("class");
      }, false);
    </script>
  </body>
</html>