blob: 1ba5f52df15107b075ad211654cc62746815abed [file] [log] [blame]
<script>
window.addEventListener('message', function () {
var exc = null;
try {
newWindow.document;
} catch (e) {
exc = e;
}
top.postMessage(exc ? '' + exc : null, '*');
});
newWindow = window.open('file-origin-window-open-popup.html');
</script>