git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2011-04-27 Tony Chang <tony@chromium.org>
[WebKit-https.git]
/
PerformanceTests
/
Parser
/
url-parser.html
1
<!DOCTYPE html>
2
<body>
3
<pre id="log"></pre>
4
<script src="resources/runner.js"></script>
5
<script>
6
var urls = loadFile("resources/final-url-en").split("\n");
7
var anchor = document.createElement("a");
8
9
start(20, function() {
10
for (var x = 0; x < urls.length; x++) {
11
anchor.href = urls[x];
12
}
13
});
14
</script>
15
</body>