| Index: Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
|
| index 94d422a18e6f13550844a5e7674d558a295fc74c..7f47108cd49f0cf23e26f43e77f8fd478dacc323 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -3863,18 +3863,18 @@ bool CSSPropertyParser::parseGridTemplateAreasRow(NamedGridAreaMap& gridAreaMap,
|
|
|
| // The following checks test that the grid area is a single filled-in rectangle.
|
| // 1. The new row is adjacent to the previously parsed row.
|
| - if (rowCount != gridCoordinate.rows.finalPositionIndex + 1)
|
| + if (rowCount != gridCoordinate.rows.resolvedFinalPosition + 1)
|
| return false;
|
|
|
| // 2. The new area starts at the same position as the previously parsed area.
|
| - if (currentCol != gridCoordinate.columns.initialPositionIndex)
|
| + if (currentCol != gridCoordinate.columns.resolvedInitialPosition)
|
| return false;
|
|
|
| // 3. The new area ends at the same position as the previously parsed area.
|
| - if (lookAheadCol != gridCoordinate.columns.finalPositionIndex)
|
| + if (lookAheadCol != gridCoordinate.columns.resolvedFinalPosition)
|
| return false;
|
|
|
| - ++gridCoordinate.rows.finalPositionIndex;
|
| + ++gridCoordinate.rows.resolvedFinalPosition;
|
| }
|
| currentCol = lookAheadCol;
|
| }
|
|
|