Index: third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp |
index 2535a3874e1bb31d6f3b0e5b7ad3c94d78622bb7..3528a0c2c7656ca361cf38e8329a5dcf98a1eadc 100644 |
--- a/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp |
@@ -1910,18 +1910,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 != gridArea.rows.resolvedFinalPosition()) |
+ if (rowCount != gridArea.rows.endLine()) |
return false; |
// 2. The new area starts at the same position as the previously parsed area. |
- if (currentCol != gridArea.columns.resolvedInitialPosition()) |
+ if (currentCol != gridArea.columns.startLine()) |
return false; |
// 3. The new area ends at the same position as the previously parsed area. |
- if (lookAheadCol != gridArea.columns.resolvedFinalPosition()) |
+ if (lookAheadCol != gridArea.columns.endLine()) |
return false; |
- gridArea.rows = GridSpan::translatedDefiniteGridSpan(gridArea.rows.resolvedInitialPosition(), gridArea.rows.resolvedFinalPosition() + 1); |
+ gridArea.rows = GridSpan::translatedDefiniteGridSpan(gridArea.rows.startLine(), gridArea.rows.endLine() + 1); |
} |
currentCol = lookAheadCol - 1; |
} |