scrollbar-marks2.html (436B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 function doTest() { 6 // Two find marks should be drawn. 7 window.setScrollMarks([20, 140]); 8 document.documentElement.removeAttribute("class"); 9 } 10 </script> 11 </head> 12 <body onload="doTest()"> 13 <p>This is some text</p> 14 <p style="height: 1000px;">Box 1</p> 15 <p>This is some text</p> 16 <p style="height: 1000px;">Box 2</p> 17 <p>This is some text</p> 18 </body> 19 </html>