electron/spec-main/fixtures/chromium/visibilitystate.html
Samuel Attard 137622931b
fix: ensure document.visibilityState aligns with the visibility of the TopLevelWindow (#19988)
* fix: ensure document.visibilityState aligns with the visibility of the
TopLevelWindow

* chore: disable the specs on linux on CI
2019-09-05 10:56:06 -07:00

19 lines
No EOL
555 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
require('electron').ipcRenderer.on('get-visibility-state', (event) => {
event.sender.send('visibility-state', document.visibilityState)
})
document.addEventListener('visibilitychange', () => {
require('electron').ipcRenderer.send('visibility-change')
})
</script>
</body>
</html>