electron/spec/fixtures/api/native-window-open-isolated.html
2017-04-30 19:33:40 +09:00

10 lines
261 B
HTML

<html>
<body>
<script type="text/javascript" charset="utf-8">
const popup = window.open();
popup.document.write('<h1>Hello</h1>');
const content = popup.document.querySelector('h1').innerText;
window.postMessage(content, '*');
</script>
</body>
</html>