Sha256: 7e6db19557702791216af0a7955da64289a03414901fd3d4bcb23535849cc69c
Contents?: true
Size: 1015 Bytes
Versions: 4
Compression:
Stored size: 1015 Bytes
Contents
<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", "resource:///res/samples/test2.html", "resource:///res/samples/test8.html", "resource:///res/samples/test6.html", "resource:///res/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 (list[idx]) { window.setTimeout(loadURL, interval); } else { window.setTimeout("w.close();", interval); window.setTimeout("window.close();", interval); } } var i; for(i=0;i<6;i++) { document.write(list[i]); document.write("<br>"); } </script>
Version data entries
4 entries across 4 versions & 2 rubygems