propagation-crossorigin-child.sub.html (938B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 window.top.postMessage(JSON.stringify({ 6 "type": "child-crossorigin-loaded", 7 "isActive": navigator.userActivation.isActive, 8 "hasBeenActive": navigator.userActivation.hasBeenActive 9 }), "*"); 10 11 window.addEventListener("click", event => { 12 window.top.postMessage(JSON.stringify({ 13 "type": "child-crossorigin-report", 14 "isActive": navigator.userActivation.isActive, 15 "hasBeenActive": navigator.userActivation.hasBeenActive 16 }), "*"); 17 }); 18 </script> 19 </head> 20 <body style="background: lightgreen;"> 21 <!-- The midpoint of this frame should be outside the grandchild frame. --> 22 <div style="height: 75px;">Cross-origin child frame</div> 23 <iframe id="child2" width="270px" height="30px" 24 src="http://{{hosts[][]}}:{{ports[http][1]}}/html/user-activation/resources/child-two.html"> 25 </iframe> 26 </body> 27 </html>