echo-iframe.html (230B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>A test page that echos back anything postMessaged to it to its parent</title> 4 5 <script> 6 "use strict"; 7 8 window.onmessage = ({ data }) => { 9 parent.postMessage(data, "*"); 10 }; 11 </script>