Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 window.addEventListener("beforeunload", function (event) { | 4 window.addEventListener("beforeunload", function (event) { |
| 5 window.history.replaceState(null, "", "beforeunload_replacestate_2.html"); | 5 setTimeout(function() { |
| 6 window.alert("hi"); | |
| 7 }, 0); | |
| 6 }); | 8 }); |
| 7 </script> | 9 </script> |
| 8 </head> | 10 </head> |
| 9 <body> | 11 <body> |
| 10 </body> | 12 </body> |
| 11 </html> | 13 </html> |
| OLD | NEW |