mirror of https://github.com/electron/electron
11 lines
303 B
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>
|