| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 <p>Inner iframe on a foreign domain.</p> | 3 <p>Inner iframe on a foreign domain.</p> |
| 4 <iframe id="aFrame" name="aFrame"></iframe> | 4 <iframe id="aFrame" name="aFrame"></iframe> |
| 5 <script> | 5 <script> |
| 6 var url = "javascript:\"<html>" | 6 var url = "javascript:\"<html>" |
| 7 + "<head>" | |
| 8 + "<scr" + "ipt>" | |
| 9 + "window.onload = function()" | |
| 10 + "{" | |
| 11 + "if (window.testRunner)" | |
| 12 + "testRunner.globalFlag = true;" | |
| 13 + "}" | |
| 14 + "</scr" + "ipt>" | |
| 15 + "</head>" | |
| 16 + "<body>" | 7 + "<body>" |
| 17 + "<p id='accessMe'>PASS: Cross frame access from a frame on a f
oreign domain denied!</p>" | 8 + "<p id='accessMe'>PASS: Cross frame access from a frame on a f
oreign domain denied!</p>" |
| 18 + "<p>Inner-inner iframe. This iframe (which is javascript: URL
and whose parent is on a foreign domain) is the frame that the" | 9 + "<p>Inner-inner iframe. This iframe (which is javascript: URL
and whose parent is on a foreign domain) is the frame that the" |
| 19 + " main frame is trying to access. It should not have access t
o it.</p>" | 10 + " main frame is trying to access. It should not have access t
o it.</p>" |
| 20 + "</body>" | 11 + "</body>" |
| 21 + "</html>\""; | 12 + "</html>\""; |
| 22 | 13 |
| 23 var frame = document.getElementById('aFrame'); | 14 var frame = document.getElementById('aFrame'); |
| 15 frame.onload = function () { window.parent.postMessage('run test', '*');
}; |
| 24 frame.src = url; | 16 frame.src = url; |
| 25 </script> | 17 </script> |
| 26 </body> | 18 </body> |
| 27 </html> | 19 </html> |
| OLD | NEW |