| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <link rel="stylesheet" href="../js/resources/js-test-style.css"> | |
| 4 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 5 <script> | 4 <script> |
| 6 var givenScrollTop = 2; | 5 var givenScrollTop = 2; |
| 7 var givenScrollLeft = 0; | 6 var givenScrollLeft = 0; |
| 8 var expectedScrollTop = 0; | 7 var expectedScrollTop = 0; |
| 9 var expectedScrollLeft = 0; | 8 var expectedScrollLeft = 0; |
| 10 var event; | 9 var event; |
| 11 var div; | 10 var div; |
| 12 | 11 |
| 13 if (window.testRunner) | 12 if (window.testRunner) |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 <div style="background-color:red;height:200px;width:1200px;position:re
lative;left:0px;top:0px"></div> | 52 <div style="background-color:red;height:200px;width:1200px;position:re
lative;left:0px;top:0px"></div> |
| 54 <div style="background-color:green;height:200px;width:1200px;position:
relative;left:1200px;top:-200px"></div> | 53 <div style="background-color:green;height:200px;width:1200px;position:
relative;left:1200px;top:-200px"></div> |
| 55 </div> | 54 </div> |
| 56 <div style="height:200px;width:2400px"> | 55 <div style="height:200px;width:2400px"> |
| 57 <div style="background-color:blue;height:200px;width:1200px;position:r
elative;left:0px;top:0px"></div> | 56 <div style="background-color:blue;height:200px;width:1200px;position:r
elative;left:0px;top:0px"></div> |
| 58 <div style="background-color:yellow;height:200px;width:1200px;position
:relative;left:1200px;top:-200px"></div> | 57 <div style="background-color:yellow;height:200px;width:1200px;position
:relative;left:1200px;top:-200px"></div> |
| 59 </div> | 58 </div> |
| 60 <div id="console"></div> | 59 <div id="console"></div> |
| 61 </body> | 60 </body> |
| 62 </html> | 61 </html> |
| OLD | NEW |