Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / PerformanceTests / Parser / simple-url.html
blobb75f8711e43a4fe79ca594afaf16a17edc2b7c33
1 <!DOCTYPE html>
2 <body>
3 <script src="../resources/runner.js"></script>
4 <script>
5 var anchor = document.createElement("a");
6 PerfTestRunner.measureRunsPerSecond({
7 description: "Measures performance of URL parsing by setting the href attribute on an <a> tag to a simple URL.",
8 run: function() {
9 for (var x = 0; x < 200000; x++) {
10 anchor.href = "http://www.apple.com/"
13 });
14 </script>
15 </body>