2007-11-26 20:35:00 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=403331
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 403331</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2007-11-26 20:35:00 -08:00
|
|
|
<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();
|
|
|
|
}
|
|
|
|
|
2010-03-12 13:53:36 -08:00
|
|
|
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";
|
2007-11-26 20:35:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
addLoadEvent(runTest);
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|