| Index: PerformanceTests/Bindings/get-attribute-rare.html
|
| diff --git a/PerformanceTests/Bindings/get-attribute.html b/PerformanceTests/Bindings/get-attribute-rare.html
|
| similarity index 84%
|
| copy from PerformanceTests/Bindings/get-attribute.html
|
| copy to PerformanceTests/Bindings/get-attribute-rare.html
|
| index 0bac2633fe1b93e5001644ee5b4710f93016ca5d..1a44809e71cb20bd3f171e5285154cb3900c0804 100644
|
| --- a/PerformanceTests/Bindings/get-attribute.html
|
| +++ b/PerformanceTests/Bindings/get-attribute-rare.html
|
| @@ -1,7 +1,7 @@
|
| <!DOCTYPE html>
|
| <html>
|
| <body>
|
| -<div id="foo"></div>
|
| +<div id="foo" role="group"></div>
|
| <script src="../resources/runner.js"></script>
|
| <script>
|
| var div = document.getElementById("foo");
|
| @@ -11,7 +11,7 @@ PerfTestRunner.measureRunsPerSecond({
|
| run: function() {
|
| var localDiv = div;
|
| for (var i = 0; i < 100000; i++)
|
| - localDiv.getAttribute("id");
|
| + localDiv.getAttribute("role");
|
| }});
|
| </script>
|
| </body>
|
|
|