1062792-1-ref.html (676B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait" style="overflow: hidden;"> 3 <head> 4 <script> 5 function scroll() { 6 document.getElementById("thediv").scrollTop = 400; 7 document.documentElement.removeAttribute("class"); 8 } 9 </script> 10 </head> 11 <body onload="scroll();" style="overflow: hidden;"> 12 <div style="background: white; position: absolute; top: 0; left: 0; bottom: 0; right: 0;"> 13 <div style="background: yellow; height: 10%;"></div> 14 <div style="overflow: scroll; height: 90%;" 15 id="thediv"> 16 <div style="background: purple; height: 4000px;"><div style="height: 500px; width: 100px; background: orange;"></div> 17 </div> 18 </div> 19 </body> 20 </html>