tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

propagated-overflow-style-1b.html (498B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4  <title>
      5    Testcase with body and html *independently* scrollable,
      6    with html's "overflow" set dynamically.
      7  </title>
      8  <style>
      9    body {
     10      overflow: scroll;
     11    }
     12  </style>
     13  <script>
     14    function doTest() {
     15      document.documentElement.style.overflow = "scroll";
     16      document.documentElement.removeAttribute("class");
     17    }
     18    window.addEventListener("MozReftestInvalidate", doTest);
     19  </script>
     20 </head>
     21 <body>
     22 </body>
     23 </html>