file_iframe_sandbox_a_if9.html 562 B

12345678910111213141516171819
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Test for Bug 341604</title>
  6. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  7. </head>
  8. <script>
  9. function doStuff() {
  10. window.parent.parent.ok_wrapper(true, "a subloaded document should inherit the flags of the document, not of the docshell/sandbox attribute");
  11. }
  12. </script>
  13. <body onload='doStuff()'>
  14. I'm a subloaded document of file_iframe_sandbox_a_if8.html. I should be able to call a function in window.top
  15. because I should be same-origin with it.
  16. </body>
  17. </html>