Title: [200189] trunk/LayoutTests
Revision
200189
Author
[email protected]
Date
2016-04-28 07:02:02 -0700 (Thu, 28 Apr 2016)

Log Message

[css-grid] Fix typo in CSS class for layout tests
https://bugs.webkit.org/show_bug.cgi?id=157129

Reviewed by Sergio Villar Senin.

CSS class "secondRowFourthColumn" was not actually setting
the second row due to a typo.

The change doesn't affect any test just by chance,
as the auto-placement algorithm is already positioning
those items on the second row.

* fast/css-grid-layout/resources/grid.css:
(.secondRowFourthColumn):

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (200188 => 200189)


--- trunk/LayoutTests/ChangeLog	2016-04-28 13:12:44 UTC (rev 200188)
+++ trunk/LayoutTests/ChangeLog	2016-04-28 14:02:02 UTC (rev 200189)
@@ -1,3 +1,20 @@
+2016-04-28  Manuel Rego Casasnovas  <[email protected]>
+
+        [css-grid] Fix typo in CSS class for layout tests
+        https://bugs.webkit.org/show_bug.cgi?id=157129
+
+        Reviewed by Sergio Villar Senin.
+
+        CSS class "secondRowFourthColumn" was not actually setting
+        the second row due to a typo.
+
+        The change doesn't affect any test just by chance,
+        as the auto-placement algorithm is already positioning
+        those items on the second row.
+
+        * fast/css-grid-layout/resources/grid.css:
+        (.secondRowFourthColumn):
+
 2016-04-28  Joanmarie Diggs  <[email protected]>
 
         AX: [ATK] We need to be smarter about flattening and the accessible text implementation

Modified: trunk/LayoutTests/fast/css-grid-layout/resources/grid.css (200188 => 200189)


--- trunk/LayoutTests/fast/css-grid-layout/resources/grid.css	2016-04-28 13:12:44 UTC (rev 200188)
+++ trunk/LayoutTests/fast/css-grid-layout/resources/grid.css	2016-04-28 14:02:02 UTC (rev 200189)
@@ -83,7 +83,7 @@
 .secondRowFourthColumn {
     background-color: pink;
     -webkit-grid-column: 4;
-    -webkitgrid-row: 2;
+    -webkit-grid-row: 2;
 }
 
 .thirdRowFirstColumn {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to