OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 <script> | 4 <script> |
5 var givenScrollTop = 0; | 5 var givenScrollTop = 0; |
6 var givenScrollLeft = 2; // When paging, this is ignored. Every even
t is one page. | 6 var givenScrollLeft = 2; // When paging, this is ignored. Every even
t is one page. |
7 var expectedScrollTop = 0; | 7 var expectedScrollTop = 0; |
8 var expectedScrollLeft = 700; // Window is 800x600. Scroll 87.5% of
visible. | 8 var expectedScrollLeft = 700; // Window is 800x600. Scroll 87.5% of
visible. |
9 var event; | 9 var event; |
10 var div; | 10 var div; |
11 | 11 |
12 window.jsTestIsAsync = true; | 12 window.jsTestIsAsync = true; |
13 if (window.testRunner) | 13 if (window.testRunner) |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 <div style="margin:0;padding:0;background-color:red;height:200px;width
:1200px;position:relative;left:0px;top:0px"></div> | 51 <div style="margin:0;padding:0;background-color:red;height:200px;width
:1200px;position:relative;left:0px;top:0px"></div> |
52 <div style="margin:0;padding:0;background-color:green;height:200px;wid
th:1200px;position:relative;left:1200px;top:-200px"></div> | 52 <div style="margin:0;padding:0;background-color:green;height:200px;wid
th:1200px;position:relative;left:1200px;top:-200px"></div> |
53 </div> | 53 </div> |
54 <div style="margin:0;padding:0;height:200px;width:2400px"> | 54 <div style="margin:0;padding:0;height:200px;width:2400px"> |
55 <div style="margin:0;padding:0;background-color:blue;height:200px;widt
h:1200px;position:relative;left:0px;top:0px"></div> | 55 <div style="margin:0;padding:0;background-color:blue;height:200px;widt
h:1200px;position:relative;left:0px;top:0px"></div> |
56 <div style="margin:0;padding:0;background-color:yellow;height:200px;wi
dth:1200px;position:relative;left:1200px;top:-200px"></div> | 56 <div style="margin:0;padding:0;background-color:yellow;height:200px;wi
dth:1200px;position:relative;left:1200px;top:-200px"></div> |
57 </div> | 57 </div> |
58 <div id="console"></div> | 58 <div id="console"></div> |
59 </body> | 59 </body> |
60 </html> | 60 </html> |
OLD | NEW |