| Index: PerformanceTests/Bindings/gc-mini-tree.html
|
| diff --git a/PerformanceTests/Bindings/gc-mini-tree.html b/PerformanceTests/Bindings/gc-mini-tree.html
|
| index b0307691553244fbb76ea52c6dc4eae344d32104..8ffc3e9c18948ef64838f4b2c92964a2ab663275 100644
|
| --- a/PerformanceTests/Bindings/gc-mini-tree.html
|
| +++ b/PerformanceTests/Bindings/gc-mini-tree.html
|
| @@ -2,12 +2,15 @@
|
| <body>
|
| <script src="../resources/runner.js"></script>
|
| <script>
|
| -PerfTestRunner.measureTime({run: function() {
|
| - (function() {
|
| - for (var i = 0; i < 500000; i++)
|
| - document.createElement("div").appendChild(document.createElement("span"));
|
| - })();
|
| - PerfTestRunner.gc();
|
| -}});
|
| +PerfTestRunner.measureTime({
|
| + description: "Measures performance of creating a half million divs that contain spans without retaining references, then running the garbage collector.",
|
| + run: function() {
|
| + (function() {
|
| + for (var i = 0; i < 500000; i++)
|
| + document.createElement("div").appendChild(document.createElement("span"));
|
| + })();
|
| + PerfTestRunner.gc();
|
| + }
|
| +});
|
| </script>
|
| </body>
|
|
|