summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scrolling/propagated-overflow-style-1c.html
blob: 11809915a0584b40321b854d54365ca6ed9e2626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="reftest-wait">
<head>
  <title>
    Testcase with body and html *independently* scrollable,
    with both html & body's "overflow" set dynamically.
  </title>
  <script>
    function doTest() {
      document.documentElement.style.overflow = "scroll";
      document.body.style.overflow = "scroll";
      document.documentElement.removeAttribute("class");
    }
    window.addEventListener("MozReftestInvalidate", doTest);
  </script>
</head>
<body>
</body>
</html>