1062792-1.html (833B)
1 <!DOCTYPE HTML> 2 <html reftest-async-scroll 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 reftest-displayport-x="0" reftest-displayport-y="-300" 15 reftest-displayport-w="800" reftest-displayport-h="2000" 16 style="overflow: scroll; height: 90%;" 17 id="thediv"> 18 <div style="background: purple; height: 4000px;"><div style="height: 500px; width: 100px; background: orange;"></div></div> 19 </div> 20 </div> 21 </body> 22 </html>