| Index: PerformanceTests/Bindings/set-attribute-rare.html
|
| diff --git a/PerformanceTests/Bindings/set-attribute.html b/PerformanceTests/Bindings/set-attribute-rare.html
|
| similarity index 82%
|
| copy from PerformanceTests/Bindings/set-attribute.html
|
| copy to PerformanceTests/Bindings/set-attribute-rare.html
|
| index dbc72a328f67c6e5c72c5b049bdb7215efdac6f5..96e5ebdb45ecac3fa04ad00c161176cf13f35de7 100644
|
| --- a/PerformanceTests/Bindings/set-attribute.html
|
| +++ b/PerformanceTests/Bindings/set-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 < 10000; i++)
|
| - localDiv.setAttribute("id", "foo");
|
| + localDiv.setAttribute("role", "group");
|
| }});
|
| </script>
|
| </body>
|
|
|