summaryrefslogtreecommitdiffstats
path: root/modules/libjar/test/mochitest/test_bug403331.html
blob: b292c4c9ba5890fd491223ad8fa2e79e598f9aa0 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=403331
-->
<head>
  <title>Test for Bug 403331</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>

<iframe id="testFrame"></iframe>

<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 403331 **/

SimpleTest.waitForExplicitFinish();

function runTest() {
  var testFrame = document.getElementById('testFrame');

  // Try a redirected load from another domain to this one.

  testFrame.onload = function() {
    // If properly redirected, we'll be able to access elements in the loaded
    // document.
    var item = testFrame.contentDocument.getElementById('testitem');
    is(item.textContent, "testcontents", "Should be able to access the child document");

    SimpleTest.finish();
  }

  testFrame.src = "jar:http://example.org:80/tests/modules/libjar/test/mochitest/openredirect.sjs?http://mochi.test:8888/tests/modules/libjar/test/mochitest/bug403331.zip!/test.html";
}

addLoadEvent(function() {
  SpecialPowers.pushPrefEnv({"set": [["network.jar.block-remote-files", false]]}, runTest);
});

</script>
</pre>

</body>
</html>