OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <body> | 3 <body> |
4 <div style="position: absolute; height:4000px; width: 100px;"></div> | 4 <div style="position: absolute; height:4000px; width: 100px;"></div> |
5 </body> | 5 </body> |
6 <img src="resources/ducky.png"></img> | 6 <img src="resources/ducky.png"></img> |
7 <script> | 7 <script> |
8 if (window.testRunner) | 8 if (window.testRunner) |
9 window.testRunner.waitUntilDone(); | 9 window.testRunner.waitUntilDone(); |
10 window.onload = function() { | 10 window.onload = function() { |
11 document.body.style.background = 'url(resources/ducky.png)'; | 11 document.body.style.background = 'url(resources/ducky.png)'; |
12 window.scrollTo(0, 3000); | 12 window.scrollTo(0, 3000); |
13 if (window.testRunner) | 13 if (window.testRunner) |
14 testRunner.notifyDone(); | 14 testRunner.notifyDone(); |
15 } | 15 } |
16 </script> | 16 </script> |
OLD | NEW |