| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../../resources/js-test.js"></script> |
| 3 <script> | 3 <script> |
| 4 window.jsTestIsAsync = true; | 4 window.jsTestIsAsync = true; |
| 5 | 5 |
| 6 description("Test that wheel scrolling over the page scrollbar scrolls " + | 6 description("Test that wheel scrolling over the page scrollbar scrolls " + |
| 7 "the page. We also placed an overflow div below the " + | 7 "the page. We also placed an overflow div below the " + |
| 8 "scrollbar to make sure we target the page and not the div " + | 8 "scrollbar to make sure we target the page and not the div " + |
| 9 "in that case."); | 9 "in that case."); |
| 10 | 10 |
| 11 var overflowDiv; | 11 var overflowDiv; |
| 12 | 12 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 29 finishJSTest(); | 29 finishJSTest(); |
| 30 } | 30 } |
| 31 </script> | 31 </script> |
| 32 | 32 |
| 33 <body style="margin:0"> | 33 <body style="margin:0"> |
| 34 <div id="overflowDiv" style="width:1000px; height:500px; overflow:scroll"> | 34 <div id="overflowDiv" style="width:1000px; height:500px; overflow:scroll"> |
| 35 <div style="height: 1000px"></div> | 35 <div style="height: 1000px"></div> |
| 36 </div> | 36 </div> |
| 37 <div style="height: 1000px"></div> | 37 <div style="height: 1000px"></div> |
| 38 </body> | 38 </body> |
| OLD | NEW |