Title: [197511] trunk/Source/WebCore
Revision
197511
Author
r...@igalia.com
Date
2016-03-03 10:34:11 -0800 (Thu, 03 Mar 2016)

Log Message

[css-grid] Fix order of grid shorthands in CSSPropertyNames.in
https://bugs.webkit.org/show_bug.cgi?id=154915

Reviewed by Darin Adler.

The order of columns and rows in grid and grid-template shorthands
has been swapped recently (r196906 & r196934).
However the order was not updated in CSSPropertyNames.in file.

* css/CSSPropertyNames.in:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (197510 => 197511)


--- trunk/Source/WebCore/ChangeLog	2016-03-03 18:30:38 UTC (rev 197510)
+++ trunk/Source/WebCore/ChangeLog	2016-03-03 18:34:11 UTC (rev 197511)
@@ -1,3 +1,16 @@
+2016-03-03  Manuel Rego Casasnovas  <r...@igalia.com>
+
+        [css-grid] Fix order of grid shorthands in CSSPropertyNames.in
+        https://bugs.webkit.org/show_bug.cgi?id=154915
+
+        Reviewed by Darin Adler.
+
+        The order of columns and rows in grid and grid-template shorthands
+        has been swapped recently (r196906 & r196934).
+        However the order was not updated in CSSPropertyNames.in file.
+
+        * css/CSSPropertyNames.in:
+
 2016-03-03  Alexey Proskuryakov  <a...@apple.com>
 
         AllInOne build fix.

Modified: trunk/Source/WebCore/css/CSSPropertyNames.in (197510 => 197511)


--- trunk/Source/WebCore/css/CSSPropertyNames.in	2016-03-03 18:30:38 UTC (rev 197510)
+++ trunk/Source/WebCore/css/CSSPropertyNames.in	2016-03-03 18:34:11 UTC (rev 197511)
@@ -495,14 +495,14 @@
 justify-items [Initial=initialSelfAlignment, Converter=SelfOrDefaultAlignmentData]
 -webkit-justify-items = justify-items
 #if defined(ENABLE_CSS_GRID_LAYOUT) && ENABLE_CSS_GRID_LAYOUT
--webkit-grid [Longhands=-webkit-grid-template-columns|-webkit-grid-template-rows|-webkit-grid-template-areas|-webkit-grid-auto-flow|-webkit-grid-auto-columns|-webkit-grid-auto-rows|-webkit-grid-column-gap|-webkit-grid-row-gap]
+-webkit-grid [Longhands=-webkit-grid-template-rows|-webkit-grid-template-columns|-webkit-grid-template-areas|-webkit-grid-auto-flow|-webkit-grid-auto-rows|-webkit-grid-auto-columns|-webkit-grid-column-gap|-webkit-grid-row-gap]
 -webkit-grid-area [Longhands=-webkit-grid-row-start|-webkit-grid-column-start|-webkit-grid-row-end|-webkit-grid-column-end]
 -webkit-grid-auto-columns [Converter=GridTrackSize]
 -webkit-grid-auto-rows [Converter=GridTrackSize]
 -webkit-grid-column-end [ConditionalConverter=GridPosition, NameForMethods=GridItemColumnEnd]
 -webkit-grid-column-gap [Initial=initialZeroLength, Converter=Length]
 -webkit-grid-column-start [ConditionalConverter=GridPosition, NameForMethods=GridItemColumnStart]
--webkit-grid-template [Longhands=-webkit-grid-template-columns|-webkit-grid-template-rows|-webkit-grid-template-areas]
+-webkit-grid-template [Longhands=-webkit-grid-template-rows|-webkit-grid-template-columns|-webkit-grid-template-areas]
 -webkit-grid-template-columns [Custom=All]
 -webkit-grid-template-rows [Custom=All]
 -webkit-grid-row-end [ConditionalConverter=GridPosition, NameForMethods=GridItemRowEnd]
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to