123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html class="reftest-wait">
- <head>
- <title>
- Testcase with only one of [html,body] being scrollable,
- after body's "overflow" is reset dynamically.
- </title>
- <style>
- html {
- overflow: scroll;
- }
- body {
- overflow: scroll;
- }
- </style>
- <script>
- function doTest() {
- document.body.style.overflow = "visible";
- document.documentElement.removeAttribute("class");
- }
- window.addEventListener("MozReftestInvalidate", doTest);
- </script>
- </head>
- <body>
- </body>
- </html>
|