2008-02-21 21:08:39 +00:00
|
|
|
<script>
|
2012-05-29 15:52:43 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-05-26 13:07:35 +00:00
|
|
|
|
2014-11-20 11:07:26 +00:00
|
|
|
var list =
|
|
|
|
[
|
2009-01-13 12:34:19 +00:00
|
|
|
"blueprint/sample.html",
|
|
|
|
"blueprint/forms.html",
|
|
|
|
"blueprint/grid.html",
|
|
|
|
"blueprint/elements.html",
|
|
|
|
"js-input/3d-thingy.html",
|
|
|
|
"js-input/crypto-otp.html",
|
2014-11-19 14:10:52 +00:00
|
|
|
"js-input/sunspider/3d-cube.html",
|
|
|
|
"js-input/sunspider/3d-morph.html",
|
|
|
|
"js-input/sunspider/3d-raytrace.html",
|
|
|
|
"js-input/sunspider/access-binary-trees.html",
|
|
|
|
"js-input/sunspider/access-fannkuch.html",
|
|
|
|
"js-input/sunspider/access-nbody.html",
|
|
|
|
"js-input/sunspider/access-nsieve.html",
|
|
|
|
"js-input/sunspider/bitops-3bit-bits-in-byte.html",
|
|
|
|
"js-input/sunspider/bitops-bits-in-byte.html",
|
|
|
|
"js-input/sunspider/bitops-bitwise-and.html",
|
|
|
|
"js-input/sunspider/bitops-nsieve-bits.html",
|
|
|
|
"js-input/sunspider/controlflow-recursive.html",
|
|
|
|
"js-input/sunspider/crypto-aes.html",
|
|
|
|
"js-input/sunspider/crypto-md5.html",
|
|
|
|
"js-input/sunspider/crypto-sha1.html",
|
|
|
|
"js-input/sunspider/date-format-tofte.html",
|
|
|
|
"js-input/sunspider/date-format-xparb.html",
|
|
|
|
"js-input/sunspider/math-cordic.html",
|
|
|
|
"js-input/sunspider/math-partial-sums.html",
|
|
|
|
"js-input/sunspider/math-spectral-norm.html",
|
|
|
|
"js-input/sunspider/regexp-dna.html",
|
|
|
|
"js-input/sunspider/string-base64.html",
|
|
|
|
"js-input/sunspider/string-fasta.html",
|
|
|
|
"js-input/sunspider/string-tagcloud.html",
|
|
|
|
"js-input/sunspider/string-unpack-code.html",
|
2014-11-20 11:07:26 +00:00
|
|
|
"js-input/sunspider/string-validate-input.html"
|
2009-01-13 12:34:19 +00:00
|
|
|
];
|
2014-11-19 14:10:52 +00:00
|
|
|
var interval = 1000;
|
2009-01-13 12:34:19 +00:00
|
|
|
var idx = 0;
|
|
|
|
var w;
|
2014-11-20 11:07:26 +00:00
|
|
|
|
2009-01-13 12:34:19 +00:00
|
|
|
window.onload = function () {
|
|
|
|
w = window.open("about:blank");
|
2014-11-20 11:07:26 +00:00
|
|
|
window.setTimeout(loadURL, interval);
|
2009-01-13 12:34:19 +00:00
|
|
|
};
|
|
|
|
function loadURL () {
|
2013-08-23 17:48:32 +00:00
|
|
|
w.close();
|
|
|
|
w = window.open(list[idx++]);
|
2009-01-13 12:34:19 +00:00
|
|
|
if (idx < list.length) {
|
2013-08-23 17:48:32 +00:00
|
|
|
window.setTimeout(loadURL, interval);
|
2009-01-13 12:34:19 +00:00
|
|
|
} else {
|
2011-05-26 13:07:35 +00:00
|
|
|
window.setTimeout(Quitter.quit, interval);
|
2009-01-13 12:34:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
var i;
|
2014-11-20 11:07:26 +00:00
|
|
|
|
2009-01-13 12:34:19 +00:00
|
|
|
for(i=0; i < list.length;i++) {
|
|
|
|
document.write(list[i]);
|
|
|
|
document.write("<br>");
|
|
|
|
}
|
|
|
|
</script>
|