Mozilla/mozilla/build/bloatcycle.html
rhelmer%mozilla.com 8d11f35f6c set timeout for parent window to fire after child window. b=379484 r=bzbarsky
git-svn-id: svn://10.0.0.236/trunk@225510 18797224-902f-48f8-a5cc-f745e15eee43
2007-05-03 05:47:56 +00:00

42 lines
1.1 KiB
HTML

<script>
// bloat test driver for TestGtkEmbed
//
// set |user_pref("dom.allow_scripts_to_close_windows", true);| to
// allow this to close the window when the loop is done.
//
// "ftp://ftp.mozilla.org", // not supported for TestGtkEmbed
//
var list =
[
"http://www.mozilla.org",
"http://www.mozilla.org",
"http://www.mozilla.org/newlayout/samples/test2.html",
"http://www.mozilla.org/newlayout/samples/test8.html",
"http://www.mozilla.org/newlayout/samples/test6.html",
"http://www.mozilla.org/newlayout/samples/test8.html"
];
var interval = 3000; // 15000
var idx = 0;
var w;
window.onload = function () {
w = window.open("about:blank");
window.setTimeout(loadURL, interval);
};
function loadURL () {
w.location.href = list[idx++];
if (idx < list.length) {
window.setTimeout(loadURL, interval);
} else {
window.setTimeout("w.close();", interval);
window.setTimeout("window.close();", interval*2);
}
}
var i;
for(i=0; i < list.length;i++) {
document.write(list[i]);
document.write("<br>");
}
</script>