Title: [185652] trunk/PerformanceTests
- Revision
- 185652
- Author
- [email protected]
- Date
- 2015-06-17 09:13:49 -0700 (Wed, 17 Jun 2015)
Log Message
[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:
Modified Paths
Diff
Modified: trunk/PerformanceTests/ChangeLog (185651 => 185652)
--- trunk/PerformanceTests/ChangeLog 2015-06-17 15:32:38 UTC (rev 185651)
+++ trunk/PerformanceTests/ChangeLog 2015-06-17 16:13:49 UTC (rev 185652)
@@ -1,3 +1,15 @@
+2015-06-17 Javier Fernandez <[email protected]>
+
+ [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 <[email protected]>
JetStream should have a more rational story for jitter-oriented latency tests
Modified: trunk/PerformanceTests/Layout/auto-grid-lots-of-data.html (185651 => 185652)
--- trunk/PerformanceTests/Layout/auto-grid-lots-of-data.html 2015-06-17 15:32:38 UTC (rev 185651)
+++ trunk/PerformanceTests/Layout/auto-grid-lots-of-data.html 2015-06-17 16:13:49 UTC (rev 185652)
@@ -9,8 +9,8 @@
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 {
Modified: trunk/PerformanceTests/Layout/fixed-grid-lots-of-data.html (185651 => 185652)
--- trunk/PerformanceTests/Layout/fixed-grid-lots-of-data.html 2015-06-17 15:32:38 UTC (rev 185651)
+++ trunk/PerformanceTests/Layout/fixed-grid-lots-of-data.html 2015-06-17 16:13:49 UTC (rev 185652)
@@ -9,8 +9,8 @@
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 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes