Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / PerformanceTests / Layout / fixed-grid-lots-of-data.html
index 8f69407..5e0c531 100644 (file)
@@ -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 (fixed).",
+        run: function() {
+            document.body.style.width = ++index % 2 ? "99%" : "98%";
+            document.body.offsetHeight;
+        }
+    });
 }
 </script>
 </head>