1234567891011 |
- <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>
|