| Index: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp | 
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp | 
| index 445fb9ac0a0f9faefbfca5f9779f9ebe479c7293..db4ff619f10f6885e8280ab77ef510ed24725ce7 100644 | 
| --- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp | 
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp | 
| @@ -506,12 +506,12 @@ void StyleBuilderConverter::createImplicitNamedGridLinesFromGridArea(const Named | 
| GridSpan areaSpan = direction == ForRows ? namedGridAreaEntry.value.rows : namedGridAreaEntry.value.columns; | 
| { | 
| NamedGridLinesMap::AddResult startResult = namedGridLines.add(namedGridAreaEntry.key + "-start", Vector<size_t>()); | 
| -            startResult.storedValue->value.append(areaSpan.resolvedInitialPosition()); | 
| +            startResult.storedValue->value.append(areaSpan.startLine()); | 
| std::sort(startResult.storedValue->value.begin(), startResult.storedValue->value.end()); | 
| } | 
| { | 
| NamedGridLinesMap::AddResult endResult = namedGridLines.add(namedGridAreaEntry.key + "-end", Vector<size_t>()); | 
| -            endResult.storedValue->value.append(areaSpan.resolvedFinalPosition()); | 
| +            endResult.storedValue->value.append(areaSpan.endLine()); | 
| std::sort(endResult.storedValue->value.begin(), endResult.storedValue->value.end()); | 
| } | 
| } | 
|  |