| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 if (window.testRunner) { | 6 if (window.testRunner) { |
| 7 window.testRunner.dumpAsText(); | 7 window.testRunner.dumpAsText(); |
| 8 window.testRunner.waitUntilDone(); | 8 window.testRunner.waitUntilDone(); |
| 9 } | 9 } |
| 10 | 10 |
| 11 function childFrameWasNavigated() | 11 function childFrameWasNavigated() |
| 12 { | 12 { |
| 13 // Check that the child frame was unable to load a plugin, since its parent
is sandboxed. | 13 // Check that the child frame was unable to load a plugin, since its parent
is sandboxed. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 src="resources/sandboxed-iframe-plugins-frame-object.html"> | 46 src="resources/sandboxed-iframe-plugins-frame-object.html"> |
| 47 </iframe> | 47 </iframe> |
| 48 | 48 |
| 49 <script> | 49 <script> |
| 50 description("This test verifies that a sandboxed iframe CAN navigate both it
self and a child in the frame tree. " | 50 description("This test verifies that a sandboxed iframe CAN navigate both it
self and a child in the frame tree. " |
| 51 + "It also verifies that the sandbox attribute remains intact af
ter a frame has been navigated, " | 51 + "It also verifies that the sandbox attribute remains intact af
ter a frame has been navigated, " |
| 52 + "and that sandbox attributes are propagated through the frame
hierarchy."); | 52 + "and that sandbox attributes are propagated through the frame
hierarchy."); |
| 53 </script> | 53 </script> |
| 54 </body> | 54 </body> |
| 55 </html> | 55 </html> |
| OLD | NEW |