focus-web-contents.html 565 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <script>
  7. const {ipcRenderer, remote} = require('electron')
  8. remote.getCurrentWindow().focus()
  9. const child = new remote.BrowserWindow({show: false})
  10. child.loadURL('about:blank')
  11. child.webContents.focus()
  12. const currentFocused = remote.getCurrentWindow().isFocused()
  13. const childFocused = child.isFocused()
  14. child.close()
  15. ipcRenderer.send('answer', currentFocused, childFocused)
  16. </script>
  17. </head>
  18. <body>
  19. </body>
  20. </html>