Set focus on picker popup everytime picker show called
[framework/web/webkit-efl.git] / PerformanceTests / Parser / simple-url.html
1 <!DOCTYPE html>
2 <body>
3 <script src="../resources/runner.js"></script>
4 <script>
5 var anchor = document.createElement("a");
6 PerfTestRunner.runPerSecond({run:function() {
7     for (var x = 0; x < 200000; x++) {
8         anchor.href = "http://www.apple.com/"
9     }
10 }});
11 </script>
12 </body>