mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 10:18:38 +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
55
docshell/test/navigation/file_bug462076_1.html
Normal file
55
docshell/test/navigation/file_bug462076_1.html
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Bug 462076</title>
|
||||
<script>
|
||||
var srcs = [ "frame0.html",
|
||||
"frame1.html",
|
||||
"frame2.html",
|
||||
"frame3.html" ];
|
||||
|
||||
var checkCount = 0;
|
||||
|
||||
function makeFrame(index) {
|
||||
var ifr = document.createElement("iframe");
|
||||
ifr.src = srcs[index];
|
||||
ifr.onload = checkFrame;
|
||||
document.getElementById("container" + index).appendChild(ifr);
|
||||
}
|
||||
|
||||
function runTest() {
|
||||
var randomNumber = Math.floor(Math.random() * 4);
|
||||
for (var i = randomNumber; i < 4; ++i) {
|
||||
makeFrame(i);
|
||||
}
|
||||
for (var i = 0; i < randomNumber; ++i) {
|
||||
makeFrame(i);
|
||||
}
|
||||
}
|
||||
|
||||
function checkFrame(evt) {
|
||||
var ifr = evt.target;
|
||||
opener.ok(new String(ifr.contentWindow.location).indexOf(ifr.src) >= 0,
|
||||
"Wrong document loaded (" + ifr.src + ", " +
|
||||
ifr.contentWindow.location + ")!");
|
||||
|
||||
if (++checkCount == 4) {
|
||||
if (++opener.testCount == 10) {
|
||||
opener.nextTest();
|
||||
window.close();
|
||||
} else {
|
||||
window.location.reload();
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container0"></div>
|
||||
<div id="container1"></div>
|
||||
<div id="container2"></div>
|
||||
<div id="container3"></div>
|
||||
<script>
|
||||
runTest();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue