1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11

content / test / data / navigation_controller / beforeunload_replacestate_2.html [blame]

<html>
<head>
<script>
window.addEventListener("beforeunload", function (event) {
  window.history.replaceState(null, "", "beforeunload_replacestate_2.html");
});
</script>
</head>
<body>
</body>
</html>