iframe-contents-icb.html (555B)
1 <!DOCTYPE html> 2 <style> 3 :root, body { 4 margin: 0; 5 height: 100%; 6 } 7 8 #target { 9 height: 300px; 10 background-color: lightBlue; 11 border: orange 10px solid; 12 box-sizing: border-box; 13 } 14 </style> 15 <meta name="responsive-embedded-sizing"> 16 <div id="target"></div> 17 <script> 18 window.addEventListener('message', e => { 19 const target = document.getElementById('target'); 20 if (e.data.name === 'height100p') { 21 target.style.height = '100%'; 22 window.requestResize(); 23 window.parent.postMessage({ 24 name: 'height100pDone', 25 }, '*'); 26 } 27 }); 28 </script>