| Index: PerformanceTests/Bindings/gc-forest.html
|
| diff --git a/PerformanceTests/Bindings/gc-forest.html b/PerformanceTests/Bindings/gc-forest.html
|
| index d18fe15cf0b13b50ec9b8c9735e23e4cb7333aa7..6c73d940d871a50f13f293087c3a48a6edc5f921 100644
|
| --- a/PerformanceTests/Bindings/gc-forest.html
|
| +++ b/PerformanceTests/Bindings/gc-forest.html
|
| @@ -2,12 +2,15 @@
|
| <body>
|
| <script src="../resources/runner.js"></script>
|
| <script>
|
| -PerfTestRunner.measureTime({run: function() {
|
| - (function() {
|
| - for (var i = 0; i < 1000000; i++)
|
| - document.createElement("div");
|
| - })();
|
| - PerfTestRunner.gc();
|
| -}});
|
| +PerfTestRunner.measureTime({
|
| + description: "Measures performance of creating one million divs without retaining references, then running the garbage collector.",
|
| + run: function() {
|
| + (function() {
|
| + for (var i = 0; i < 1000000; i++)
|
| + document.createElement("div");
|
| + })();
|
| + PerfTestRunner.gc();
|
| + }
|
| +});
|
| </script>
|
| </body>
|
|
|