mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
42 lines
1.1 KiB
HTML
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>
|