1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/build/pgo/index.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,64 @@ 1.4 +<script> 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 + var list = 1.10 + [ 1.11 + "blueprint/sample.html", 1.12 + "blueprint/forms.html", 1.13 + "blueprint/grid.html", 1.14 + "blueprint/elements.html", 1.15 + "js-input/3d-cube.html", 1.16 + "js-input/3d-morph.html", 1.17 + "js-input/3d-raytrace.html", 1.18 + "js-input/3d-thingy.html", 1.19 + "js-input/access-binary-trees.html", 1.20 + "js-input/access-fannkuch.html", 1.21 + "js-input/access-nbody.html", 1.22 + "js-input/access-nsieve.html", 1.23 + "js-input/bitops-3bit-bits-in-byte.html", 1.24 + "js-input/bitops-bits-in-byte.html", 1.25 + "js-input/bitops-bitwise-and.html", 1.26 + "js-input/bitops-nsieve-bits.html", 1.27 + "js-input/controlflow-recursive.html", 1.28 + "js-input/crypto-aes.html", 1.29 + "js-input/crypto-md5.html", 1.30 + "js-input/crypto-sha1.html", 1.31 + "js-input/crypto-otp.html", 1.32 + "js-input/date-format-tofte.html", 1.33 + "js-input/date-format-xparb.html", 1.34 + "js-input/math-cordic.html", 1.35 + "js-input/math-partial-sums.html", 1.36 + "js-input/math-spectral-norm.html", 1.37 + "js-input/regexp-dna.html", 1.38 + "js-input/string-base64.html", 1.39 + "js-input/string-fasta.html", 1.40 + "js-input/string-tagcloud.html", 1.41 + "js-input/string-unpack-code.html", 1.42 + "js-input/string-validate-input.html" 1.43 + ]; 1.44 + var interval = 3000; // 15000 1.45 + var idx = 0; 1.46 + var w; 1.47 + 1.48 + window.onload = function () { 1.49 + w = window.open("about:blank"); 1.50 + window.setTimeout(loadURL, interval); 1.51 + }; 1.52 + function loadURL () { 1.53 + w.close(); 1.54 + w = window.open(list[idx++]); 1.55 + if (idx < list.length) { 1.56 + window.setTimeout(loadURL, interval); 1.57 + } else { 1.58 + window.setTimeout(Quitter.quit, interval); 1.59 + } 1.60 + } 1.61 + var i; 1.62 + 1.63 + for(i=0; i < list.length;i++) { 1.64 + document.write(list[i]); 1.65 + document.write("<br>"); 1.66 + } 1.67 + </script>