Add spec for cross-origin blockage

This commit is contained in:
Kevin Sawicki 2017-05-24 13:07:50 -07:00
parent e735aa7dee
commit 36989e19f8
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<html>
<body>
<script type="text/javascript" charset="utf-8">
const {ipcRenderer} = require('electron')
const popup = window.open('http://host')
const intervalID = setInterval(function () {
try {
if (popup.location.toString() !== 'about:blank') {
clearInterval(intervalID)
ipcRenderer.send('answer', 'did not throw error')
}
} catch (error) {
clearInterval(intervalID)
ipcRenderer.send('answer', error.message)
}
}, 10)
</script>
</body>
</html>