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