2016-03-30 22:16:36 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Test title</title>
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.onload = function () {
|
|
|
|
history.replaceState({}, '', window.location + '?state=2');
|
2017-03-29 17:58:05 +02:00
|
|
|
console.log("Called history.replaceState");
|
2016-03-30 22:16:36 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
This page calls history.replaceState() via JS.
|
|
|
|
</body>
|
|
|
|
</html>
|