summaryrefslogtreecommitdiffstats
path: root/dom/html/test/file_iframe_sandbox_d_if17.html
blob: 047a08137d9650f27fe57e83573de8a36b770f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for Bug 838692</title>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>

<script type="application/javascript">
  var testContext = "Test 17: navigate _self with window.open(): ";

  function doTest() {
    try {
      window.open("file_iframe_sandbox_navigation_pass.html?" + escape(testContext), "_self");
    } catch(error) {
      window.parent.postMessage({ok: false, desc: testContext + "error thrown during window.open(..., \"_self\")"}, "*");
    }
  }
</script>

<body onload="doTest()">
  I am sandboxed with 'allow-scripts'
</body>
</html>