1<html> 2<head> 3<script> 4window.onload = function() { 5 setTimeout(function() { 6 history.pushState("", "", "#pushState"); 7 document.title = "pushState"; 8 }, 0); 9} 10</script> 11</head> 12</html> 13