electron/spec/fixtures/pages/history-replace.html

11 lines
303 B
HTML

<html>
<body>
<script type="text/javascript" charset="utf-8">
window.addEventListener("load", function() {
window.history.replaceState(window.history.state, "test page", window.location.href)
require('electron').ipcRenderer.sendToHost('history', window.history.length);
})
</script>
</body>
</html>