| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>single-frame-self-allowed</title> | |
| 5 <script src="/resources/testharness.js"></script> | |
| 6 <script src="/resources/testharnessreport.js"></script> | |
| 7 <script src="../support/logTest.sub.js?logs=[]"></script> | |
| 8 <script src='../support/alertAssert.sub.js?alerts=["PASS"]'></script> | |
| 9 <!-- enforcing policy: | |
| 10 connect-src 'self' 'none'; script-src 'self' 'unsafe-inline'; frame-src 'self'; | |
| 11 --> | |
| 12 <script> | |
| 13 function onMessage(event) { | |
| 14 if(event.data == "start test") { | |
| 15 startTest(); | |
| 16 } else { | |
| 17 alert_assert(event.data); | |
| 18 } | |
| 19 } | |
| 20 | |
| 21 window.addEventListener( | |
| 22 "message", | |
| 23 onMessage, | |
| 24 false); | |
| 25 | |
| 26 function startTest() { | |
| 27 window.frames['frame1'].frames['deepframe'].postMessage("hello deep
frame", "*"); | |
| 28 } | |
| 29 function done() { alert_assert("PASS"); } | |
| 30 setTimeout(done(), 1); | |
| 31 </script> | |
| 32 </head> | |
| 33 <body> | |
| 34 <iframe src='http://{{host}}:{{ports[http][0]}}/content-security-policy/fram
e-ancestors/intermediate-reporting-frame-allows-self.sub.html?subframe=http://{{
host}}:{{ports[http][0]}}/content-security-policy/frame-ancestors/reporting-fram
e-allows-none.html' name="frame1"></iframe> | |
| 35 <div id="log"></div> | |
| 36 </body> | |
| 37 </html> | |
| OLD | NEW |