Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <body> | |
| 2 <div style="height: 2000px;"></div> | |
| 3 <script> | |
| 4 history.back(); | |
| 5 | |
| 6 window.onbeforeunload = function() { | |
| 7 history.replaceState({foo:'bar'}, null, "#"); | |
| 8 window.scrollTo(0, 1000); | |
| 9 } | |
| 10 </script> | |
| 11 </body> | |
| OLD | NEW |