https://bugs.webkit.org/show_bug.cgi?id=146061
Reviewed by Sergio Villar Senin.
Adapted tests to the new grid tracks definition syntax.
* Layout/auto-grid-lots-of-data.html:
* Layout/fixed-grid-lots-of-data.html:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@185652
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-06-17 Javier Fernandez <jfernandez@igalia.com>
+
+ [CSS Grid Layout] Performance tests are using the old syntax
+ https://bugs.webkit.org/show_bug.cgi?id=146061
+
+ Reviewed by Sergio Villar Senin.
+
+ Adapted tests to the new grid tracks definition syntax.
+
+ * Layout/auto-grid-lots-of-data.html:
+ * Layout/fixed-grid-lots-of-data.html:
+
2015-06-08 Filip Pizlo <fpizlo@apple.com>
JetStream should have a more rational story for jitter-oriented latency tests
body {
display: -webkit-grid;
- -webkit-grid-definition-rows: repeat(100, auto);
- -webkit-grid-definition-columns: repeat(20, auto);
+ -webkit-grid-template-rows: repeat(100, auto);
+ -webkit-grid-template-columns: repeat(20, auto);
}
.gridItem {
body {
display: -webkit-grid;
- -webkit-grid-definition-rows: repeat(100, 200px);
- -webkit-grid-definition-columns: repeat(20, 200px);
+ -webkit-grid-template-rows: repeat(100, 200px);
+ -webkit-grid-template-columns: repeat(20, 200px);
}
.gridItem {