| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 var MIDDLE_BUTTON = 1; | 4 var MIDDLE_BUTTON = 1; |
| 5 | 5 |
| 6 function $(id) { return document.getElementById(id); } | 6 function $(id) { return document.getElementById(id); } |
| 7 | 7 |
| 8 function doTest() { | 8 function doTest() { |
| 9 var scrollable = document.body; | 9 var scrollable = document.body; |
| 10 for (var i = 0; i < 20; ++i) { | 10 for (var i = 0; i < 20; ++i) { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 function testDone(message) { | 66 function testDone(message) { |
| 67 $('result').textContent = message; | 67 $('result').textContent = message; |
| 68 testRunner.notifyDone(); | 68 testRunner.notifyDone(); |
| 69 } | 69 } |
| 70 </script> | 70 </script> |
| 71 </head> | 71 </head> |
| 72 <body onload="start()"> | 72 <body onload="start()"> |
| 73 <div id="result">You should run this test in DRT.</div> | 73 <div id="result">You should run this test in DRT.</div> |
| 74 </body> | 74 </body> |
| 75 </html> | 75 </html> |
| OLD | NEW |