electron/spec/fixtures/api/native-window-open-blank.html
2017-04-30 18:54:08 +09:00

11 lines
309 B
HTML

<html>
<body>
<script type="text/javascript" charset="utf-8">
const {ipcRenderer} = require("electron");
const popup = window.open();
popup.document.write('<h1>Hello</h1>');
const content = popup.document.querySelector('h1').innerText;
ipcRenderer.send('answer', content);
</script>
</body>
</html>