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