| Index: PerformanceTests/Layout/flexbox-lots-of-data.html
|
| diff --git a/PerformanceTests/Layout/flexbox-lots-of-data.html b/PerformanceTests/Layout/flexbox-lots-of-data.html
|
| index 9c7b9bb8e6e65ff435bd66234ceab56d01a09b1c..e58a67a7fd6d97d6d56a2f389ac47cf7e6ea33d1 100644
|
| --- a/PerformanceTests/Layout/flexbox-lots-of-data.html
|
| +++ b/PerformanceTests/Layout/flexbox-lots-of-data.html
|
| @@ -48,10 +48,13 @@ function startTest() {
|
| document.body.offsetHeight;
|
|
|
| var index = 0;
|
| - PerfTestRunner.measureRunsPerSecond({run: function() {
|
| - document.body.style.width = ++index % 2 ? "99%" : "98%";
|
| - document.body.offsetHeight;
|
| - }});
|
| + PerfTestRunner.measureRunsPerSecond({
|
| + description: "Measures performance of flexbox with lots of data laid out in as a table.",
|
| + run: function() {
|
| + document.body.style.width = ++index % 2 ? "99%" : "98%";
|
| + document.body.offsetHeight;
|
| + }
|
| + });
|
| }
|
| </script>
|
| </head>
|
|
|