<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>pushstate</title>
</head>
<body>
<script type="text/javascript">
window.history.pushState({}, "title", "#");
window.addEventListener("popstate", function(e) {
}, false);
</script>
</body>
</html>