Changeset 197511 in webkit


Ignore:
Timestamp:
Mar 3, 2016 10:34:11 AM (8 years ago)
Author:
Manuel Rego Casasnovas
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:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r197509 r197511  
     12016-03-03  Manuel Rego Casasnovas  <rego@igalia.com>
     2
     3        [css-grid] Fix order of grid shorthands in CSSPropertyNames.in
     4        https://bugs.webkit.org/show_bug.cgi?id=154915
     5
     6        Reviewed by Darin Adler.
     7
     8        The order of columns and rows in grid and grid-template shorthands
     9        has been swapped recently (r196906 & r196934).
     10        However the order was not updated in CSSPropertyNames.in file.
     11
     12        * css/CSSPropertyNames.in:
     13
    1142016-03-03  Alexey Proskuryakov  <ap@apple.com>
    215
  • trunk/Source/WebCore/css/CSSPropertyNames.in

    r197450 r197511  
    496496-webkit-justify-items = justify-items
    497497#if defined(ENABLE_CSS_GRID_LAYOUT) && ENABLE_CSS_GRID_LAYOUT
    498 -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]
     498-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]
    499499-webkit-grid-area [Longhands=-webkit-grid-row-start|-webkit-grid-column-start|-webkit-grid-row-end|-webkit-grid-column-end]
    500500-webkit-grid-auto-columns [Converter=GridTrackSize]
     
    503503-webkit-grid-column-gap [Initial=initialZeroLength, Converter=Length]
    504504-webkit-grid-column-start [ConditionalConverter=GridPosition, NameForMethods=GridItemColumnStart]
    505 -webkit-grid-template [Longhands=-webkit-grid-template-columns|-webkit-grid-template-rows|-webkit-grid-template-areas]
     505-webkit-grid-template [Longhands=-webkit-grid-template-rows|-webkit-grid-template-columns|-webkit-grid-template-areas]
    506506-webkit-grid-template-columns [Custom=All]
    507507-webkit-grid-template-rows [Custom=All]
Note: See TracChangeset for help on using the changeset viewer.