qutebrowser/tests/end2end/data/sessions/history_replace_state.html

17 lines
447 B
HTML
Raw Normal View History

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>