1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / push_state.html [blame]

<html>
<head>
<script>
window.onload = function() {
  setTimeout(function() {
    history.pushState("", "", "#pushState");
    document.title = "pushState";
  }, 0);
}
</script>
</head>
</html>