window_party_iframes.html (342B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <!DOCTYPE HTML> 6 <html> 7 <head> 8 <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> 9 </head> 10 <body> 11 <iframe></iframe> 12 <script> 13 window.onmessage = e => { 14 opener.postMessage(e.data, "*"); 15 } 16 </script> 17 </body> 18 </html>