2008-01-27 11:39:10 -08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2008-01-27 11:39:10 -08:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script type="text/javascript" src="NavigationUtils.js"></script>
|
|
|
|
<style type="text/css">
|
|
|
|
iframe { width: 90%; height: 50px; }
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
window.onload = function() {
|
|
|
|
navigateByLocation(frames[0]);
|
|
|
|
navigateByOpen("child1");
|
|
|
|
navigateByForm("child2");
|
|
|
|
navigateByHyperlink("child3");
|
|
|
|
|
2008-02-11 20:35:19 -08:00
|
|
|
xpcWaitForFinishedFrames(function() {
|
|
|
|
isNavigated(frames[0], "Should be able to navigate off-domain child by setting location.");
|
|
|
|
isNavigated(frames[1], "Should be able to navigate off-domain child by calling window.open.");
|
|
|
|
isNavigated(frames[2], "Should be able to navigate off-domain child by submitting form.");
|
|
|
|
isNavigated(frames[3], "Should be able to navigate off-domain child by targeted hyperlink.");
|
2008-01-27 11:39:10 -08:00
|
|
|
|
2008-02-11 20:35:19 -08:00
|
|
|
xpcCleanupWindows();
|
|
|
|
SimpleTest.finish();
|
|
|
|
}, 4);
|
|
|
|
}
|
2008-01-27 11:39:10 -08:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=408052">Mozilla Bug 408052</a>
|
|
|
|
<div id="frames">
|
|
|
|
<iframe name="child0" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
|
|
|
<iframe name="child1" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
|
|
|
<iframe name="child2" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
|
|
|
<iframe name="child3" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script type="text/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|