summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/Parser/simple-url.html
blob: 0469383bb34a74177ba47a2632672da83f694c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<body>
<pre id="log"></pre>
<script src="resources/runner.js"></script>
<script>
var anchor = document.createElement("a");
start(20, function() {
    for (var x = 0; x < 200000; x++) {
        anchor.href = "http://www.apple.com/"
    }
});
</script>
</body>