| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Pan Scrolling Test</title> | 3 <title>Pan Scrolling Test</title> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <script> | 6 <script> |
| 7 if (window.testRunner) { | 7 if (window.testRunner) { |
| 8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
| 9 testRunner.waitUntilDone(); | 9 testRunner.waitUntilDone(); |
| 10 } | 10 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 if (document.getElementById('overflow').scrollTop) | 37 if (document.getElementById('overflow').scrollTop) |
| 38 document.getElementById('console').innerHTML = "Success! Div
with overflow was scrolled"; | 38 document.getElementById('console').innerHTML = "Success! Div
with overflow was scrolled"; |
| 39 else | 39 else |
| 40 document.getElementById('console').innerHTML = "Fail! Div wi
th overflow was not scrolled"; | 40 document.getElementById('console').innerHTML = "Fail! Div wi
th overflow was not scrolled"; |
| 41 | 41 |
| 42 window.testRunner.notifyDone(); | 42 window.testRunner.notifyDone(); |
| 43 } | 43 } |
| 44 </script> | 44 </script> |
| 45 </body> | 45 </body> |
| 46 </html> | 46 </html> |
| OLD | NEW |