mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
62
docshell/test/navigation/test_popup-navigates-children.html
Normal file
62
docshell/test/navigation/test_popup-navigates-children.html
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
||||
function testChild0() {
|
||||
if (!window.window0)
|
||||
window0 = window.open("navigate.html#opener.frames[0],location", "window0", "width=10,height=10");
|
||||
}
|
||||
|
||||
function testChild1() {
|
||||
if (!window.window1)
|
||||
window1 = window.open("navigate.html#child1,open", "window1", "width=10,height=10");
|
||||
}
|
||||
|
||||
function testChild2() {
|
||||
if (!window.window2)
|
||||
window2 = window.open("navigate.html#child2,form", "window2", "width=10,height=10");
|
||||
}
|
||||
|
||||
function testChild3() {
|
||||
if (!window.window3)
|
||||
window3 = window.open("navigate.html#child3,hyperlink", "window3", "width=10,height=10");
|
||||
}
|
||||
|
||||
xpcWaitForFinishedFrames(function() {
|
||||
isNavigated(frames[0], "Should be able to navigate on-domain opener's children by setting location.");
|
||||
isNavigated(frames[1], "Should be able to navigate on-domain opener's children by calling window.open.");
|
||||
isNavigated(frames[2], "Should be able to navigate on-domain opener's children by submitting form.");
|
||||
isNavigated(frames[3], "Should be able to navigate on-domain opener's children by targeted hyperlink.");
|
||||
|
||||
window0.close();
|
||||
window1.close();
|
||||
window2.close();
|
||||
window3.close();
|
||||
|
||||
xpcCleanupWindows();
|
||||
SimpleTest.finish();
|
||||
}, 4);
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="frames">
|
||||
<iframe onload="testChild0()" name="child0" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
||||
<iframe onload="testChild1()" name="child1" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
||||
<iframe onload="testChild2()" name="child2" src="http://test1.example.org:80/tests/docshell/test/navigation/blank.html"></iframe>
|
||||
<iframe onload="testChild3()" 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue