Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / scrolling / propagated-overflow-style-2c.html
blob0ceb1f21aba9d1598801a9ce9fe7fa527313985f
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <title>
5 Testcase with only one of [html,body] being scrollable,
6 with their "overflow" styles being dynamically swapped.
7 </title>
8 <style>
9 html {
10 overflow: scroll;
12 </style>
13 <script>
14 function doTest() {
15 document.documentElement.style.overflow = "visible";
16 document.body.style.overflow = "scroll";
17 document.documentElement.removeAttribute("class");
19 window.addEventListener("MozReftestInvalidate", doTest);
20 </script>
21 </head>
22 <body>
23 </body>
24 </html>