Could be the same underlying issue from: https://github.com/LavaMoat/snow/issues/141 ```js var x = document.createElement('iframe'); x.srcdoc = `<meta http-equiv="refresh" content="0;">` document.body.appendChild(x); setInterval(()=>{ x.contentWindow.alert(origin); },0); ```