incumbent.html (311B)
1 <!DOCTYPE html> 2 <title>Incumbent page used as a test helper</title> 3 4 <iframe src="../current/current.html" id="current"></iframe> 5 6 <script> 7 const current = document.querySelector("#current").contentWindow; 8 9 window.hello = () => { 10 window.ws = new current.WebSocket('foo'); 11 ws.close(); 12 }; 13 </script>