summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/Parser/simple-url.html
diff options
context:
space:
mode:
Diffstat (limited to 'PerformanceTests/Parser/simple-url.html')
-rw-r--r--PerformanceTests/Parser/simple-url.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/PerformanceTests/Parser/simple-url.html b/PerformanceTests/Parser/simple-url.html
new file mode 100644
index 0000000..0469383
--- /dev/null
+++ b/PerformanceTests/Parser/simple-url.html
@@ -0,0 +1,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>