summaryrefslogtreecommitdiffstats
path: root/modules/libjar/test/mochitest/test_bug403331.html
diff options
context:
space:
mode:
Diffstat (limited to 'modules/libjar/test/mochitest/test_bug403331.html')
-rw-r--r--modules/libjar/test/mochitest/test_bug403331.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/modules/libjar/test/mochitest/test_bug403331.html b/modules/libjar/test/mochitest/test_bug403331.html
new file mode 100644
index 000000000..b292c4c9b
--- /dev/null
+++ b/modules/libjar/test/mochitest/test_bug403331.html
@@ -0,0 +1,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>