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