| Index: PerformanceTests/Bindings/node-type.html
|
| diff --git a/PerformanceTests/Bindings/scroll-top.html b/PerformanceTests/Bindings/node-type.html
|
| similarity index 85%
|
| rename from PerformanceTests/Bindings/scroll-top.html
|
| rename to PerformanceTests/Bindings/node-type.html
|
| index d4590d77716b7959546f0080ba5fe978d6747fe0..5532e0d4fec60fd6359e4da05eb5985b6af4fd0a 100644
|
| --- a/PerformanceTests/Bindings/scroll-top.html
|
| +++ b/PerformanceTests/Bindings/node-type.html
|
| @@ -4,11 +4,11 @@
|
| <script src="../resources/runner.js"></script>
|
| <script>
|
| PerfTestRunner.measureRunsPerSecond({
|
| - description: "This benchmark covers DOM attributes that return small integers.",
|
| + description: "This benchmark covers DOM attributes that return integers.",
|
| run: function() {
|
| var localBody = document.body;
|
| for (var i = 0; i < 100000; i++)
|
| - localBody.scrollTop;
|
| + localBody.nodeType;
|
| }});
|
| </script>
|
| </body>
|
|
|