| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>multiple-frames-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=["hello frame1","hello fra
me2"]'></script> | |
| 9 <!-- enforcing policy: | |
| 10 connect-src 'self' 'none'; script-src 'self' 'unsafe-inline'; frame-src 'self'; | |
| 11 --> | |
| 12 <script> | |
| 13 var startTestCtr = 0; | |
| 14 function onMessage(event) { | |
| 15 if(event.data == "start test") { | |
| 16 startTestCtr++; | |
| 17 if(startTestCtr == 2) { | |
| 18 startTest(); | |
| 19 } | |
| 20 } else { | |
| 21 alert_assert(event.data); | |
| 22 } | |
| 23 } | |
| 24 window.addEventListener( | |
| 25 "message", | |
| 26 onMessage, | |
| 27 false); | |
| 28 function startTest() { | |
| 29 window.frames['frame1'].postMessage("hello frame1", "*"); | |
| 30 window.frames['frame2'].postMessage("hello frame2", "*"); | |
| 31 } | |
| 32 </script> | |
| 33 </head> | |
| 34 <body> | |
| 35 <iframe src='http://{{host}}:{{ports[http][0]}}/content-security-policy/fram
e-ancestors/reporting-frame-allows-self.html' name="frame1"></iframe> | |
| 36 <iframe src='http://{{host}}:{{ports[http][0]}}/content-security-policy/
frame-ancestors/reporting-frame-allows-self.html' name="frame2"></iframe> | |
| 37 <div id="log"></div> | |
| 38 </body> | |
| 39 </html> | |
| OLD | NEW |