file_iframe_sandbox_k_if8.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Test for Bug 766282</title>
  6. <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  7. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  8. </head>
  9. <script type="text/javascript">
  10. function doSubOpens() {
  11. // Open a new window via target="_blank", target="BC766282_if9" and window.open().
  12. sendMouseEvent({type:'click'}, 'target_blank_if9');
  13. sendMouseEvent({type:'click'}, 'target_BC766282_if9');
  14. window.open("file_iframe_sandbox_k_if9.html");
  15. sendMouseEvent({type:'click'}, 'target_if1');
  16. }
  17. window.doSubOpens = doSubOpens;
  18. </script>
  19. <body>
  20. I am sandboxed but with "allow-scripts allow-popups allow-same-origin".
  21. After my initial load, "allow-same-origin" is removed and then I open file_iframe_sandbox_k_if9.html
  22. in 3 different ways, which attemps to call a function in my parent.
  23. This should succeed since the new sandbox flags shouldn't have taken affect on me until I'm reloaded.
  24. <a href="file_iframe_sandbox_k_if9.html" target="_blank" id="target_blank_if9">open window</a>
  25. <a href="file_iframe_sandbox_k_if9.html" target="BC766282_if9" id="target_BC766282_if9">open window</a>
  26. Now navigate to file_iframe_sandbox_k_if1.html to do tests for a sandbox opening a window
  27. when only "allow-scripts allow-popups" are specified.
  28. <a href="file_iframe_sandbox_k_if1.html" id="target_if1">navigate to if1</a>
  29. </body>
  30. </html>