native-window-open-no-allowpopups.html 232 B

12345678910
  1. <html>
  2. <body>
  3. <script type="text/javascript" charset="utf-8">
  4. const {ipcRenderer} = require('electron')
  5. const popup = window.open()
  6. ipcRenderer.send('answer', {windowOpenReturnedNull: popup == null})
  7. </script>
  8. </body>
  9. </html>