summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/Parser/url-parser.html
blob: bd54e0c02fec7b176553293183b33316491ec014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<body>
<pre id="log"></pre>
<script src="resources/runner.js"></script>
<script>
var urls = loadFile("resources/final-url-en").split("\n");
var anchor = document.createElement("a");

start(20, function() {
    for (var x = 0; x < urls.length; x++) {
        anchor.href = urls[x];
    }
});
</script>
</body>