is-upgraded.html (300B)
1 <!DOCTYPE html> 2 <body> 3 <script>document.write(`<p>protocol? ${location.protocol}</p>`);</script> 4 <script> 5 window.addEventListener('load', () => { 6 window.parent.postMessage( 7 { 8 name: 'iframe-protocol-check', 9 protocol: location.protocol 10 }, '*'); 11 }); 12 </script> 13 </body>