| Index: PerformanceTests/Layout/auto-grid-lots-of-data.html
|
| diff --git a/PerformanceTests/Layout/auto-grid-lots-of-data.html b/PerformanceTests/Layout/auto-grid-lots-of-data.html
|
| index 54fc99adf2c2308a8fec99c55facbee300d22d70..3949d6c2ca3a2999f0f3f4eb1747cda81bd35dbf 100644
|
| --- a/PerformanceTests/Layout/auto-grid-lots-of-data.html
|
| +++ b/PerformanceTests/Layout/auto-grid-lots-of-data.html
|
| @@ -24,10 +24,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 layout on a page using CSS grid layout.",
|
| + run: function() {
|
| + document.body.style.width = ++index % 2 ? "99%" : "98%";
|
| + document.body.offsetHeight;
|
| + }
|
| + });
|
| }
|
| </script>
|
| </head>
|
|
|