| 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 474576738139b147fc5b4b7e8db7e05c1340d6b7..ac6476947d2d4b96e830cd4d4c46017713f04943 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| @@ -265,12 +265,6 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::legacyParseValue(CSSProperty
|
| parsedValue = parseGridAutoFlow(*m_valueList);
|
| break;
|
|
|
| - case CSSPropertyGridTemplateColumns:
|
| - case CSSPropertyGridTemplateRows:
|
| - ASSERT(RuntimeEnabledFeatures::cssGridLayoutEnabled());
|
| - parsedValue = parseGridTrackList();
|
| - break;
|
| -
|
| case CSSPropertyGridTemplateAreas:
|
| ASSERT(RuntimeEnabledFeatures::cssGridLayoutEnabled());
|
| parsedValue = parseGridTemplateAreas();
|
| @@ -539,7 +533,7 @@ bool CSSPropertyParser::parseGridLineNames(CSSParserValueList& inputList, CSSVal
|
| return true;
|
| }
|
|
|
| -static bool allTracksAreFixedSized(CSSValueList& valueList)
|
| +bool allTracksAreFixedSized(CSSValueList& valueList)
|
| {
|
| for (auto value : valueList) {
|
| if (value->isGridLineNamesValue())
|
|
|