Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / PerformanceTests / Bindings / id-setter.html
blobb0d7535abdf78441b7141ee10104e227b0a417fa
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div id="foo"></div>
5 <script src="../resources/runner.js"></script>
6 <script>
7 var div = document.getElementById("foo");
9 PerfTestRunner.measureRunsPerSecond({
10 description: "This benchmark covers 'element.property = value' in Dromaeo/dom-attr.html, and other DOM attributes that sets a String.",
11 run: function() {
12 var localDiv = div;
13 for (var i = 0; i < 50000; i++)
14 localDiv.id = "foo";
15 }});
16 </script>
17 </body>
18 </html>