qutebrowser/tests/end2end/data/sessions/history_replace_state.html
Florian Bruhin 64d4c9f83e Clean up end2end test file structure
This renames tests/integration to tests/end2end and moves some files to
tests/end2end/fixtures.
2016-05-29 18:20:00 +02:00

17 lines
448 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test title</title>
<script type="text/javascript">
window.onload = function () {
console.log("Calling history.replaceState");
history.replaceState({}, '', window.location + '?state=2');
}
</script>
</head>
<body>
This page calls history.replaceState() via JS.
</body>
</html>