| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <body> | |
| 3 <script src="/js-test-resources/js-test.js"></script> | |
| 4 <div style="height: 1100px">scroll down...</div> | |
| 5 <div id="log"></div> | |
| 6 <script> | |
| 7 if (window.testRunner) { | |
| 8 testRunner.dumpAsText(); | |
| 9 testRunner.waitUntilDone(); | |
| 10 } | |
| 11 | |
| 12 window.onload = function() { | |
| 13 window.scrollBy(0, 1000); | |
| 14 history.pushState({}, '', ''); | |
| 15 history.pushState({}, '', ''); | |
| 16 scrollOffsetY = window.scrollY; | |
| 17 history.back(); | |
| 18 setTimeout(function() { | |
| 19 shouldBeTrue('window.scrollY == scrollOffsetY'); | |
| 20 if (window.testRunner) | |
| 21 testRunner.notifyDone(); | |
| 22 }, 0); | |
| 23 }; | |
| 24 </script> | |
| 25 </body> | |
| OLD | NEW |