blob: b9c427d09971f0369ed42741976a0bc2e13edc77 [file]
<html>
<head>
<script>
window.onload = function() {
history.pushState("", "");
}
function pushToNewUrl() {
history.pushState("", "", "/newurl.html");
}
</script>
</head>
<body>
<button id="push_to_new_url_button" onclick="pushToNewUrl()">push to new url</button>
</body>
</html>