electron/spec/fixtures/pages/focus-web-contents.html
2017-02-15 08:28:55 -08:00

24 lines
503 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script>
const {ipcRenderer, remote} = require('electron')
const child = new remote.BrowserWindow({show: false})
remote.getCurrentWindow().once('blur', () => {
ipcRenderer.send('answer', child.isVisible(), child.isFocused())
child.close()
})
child.webContents.focus()
child.show()
child.webContents.focus()
</script>
</head>
<body>
</body>
</html>