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