| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="resources/cross-frame-access.js"></script> | 3 <script src="resources/cross-frame-access.js"></script> |
| 4 <script> | 4 <script> |
| 5 window.onload = function() | 5 // FIXME[11] window.onload = function() |
| 6 { | 6 { |
| 7 if (window.testRunner) { | 7 if (window.testRunner) { |
| 8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
| 9 testRunner.waitUntilDone(); | 9 testRunner.waitUntilDone(); |
| 10 } | 10 } |
| 11 | 11 |
| 12 window.addEventListener('message', function () | 12 window.addEventListener('message', function () |
| 13 { | 13 { |
| 14 runTest(); | 14 runTest(); |
| 15 if (window.testRunner) | 15 if (window.testRunner) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 36 shouldBeTrue("customPropertyAccessThrowsException(targetWindow)"); | 36 shouldBeTrue("customPropertyAccessThrowsException(targetWindow)"); |
| 37 } | 37 } |
| 38 </script> | 38 </script> |
| 39 </head> | 39 </head> |
| 40 <body> | 40 <body> |
| 41 <p>This test checks that caching of property accesses doesn't allow for illegal
cross-frame access of a custom property. It also checks for an assertion failure
that once occurred in this situation.</p> | 41 <p>This test checks that caching of property accesses doesn't allow for illegal
cross-frame access of a custom property. It also checks for an assertion failure
that once occurred in this situation.</p> |
| 42 <iframe src="http://localhost:8000/security/resources/cross-frame-access-get-cus
tom-property-cached-iframe.html" style=""></iframe> | 42 <iframe src="http://localhost:8000/security/resources/cross-frame-access-get-cus
tom-property-cached-iframe.html" style=""></iframe> |
| 43 <pre id="console"></pre> | 43 <pre id="console"></pre> |
| 44 </body> | 44 </body> |
| 45 </html> | 45 </html> |
| OLD | NEW |