| Index: third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
|
| index c378fc45ba617776492f9f5bd49246676a20e223..f963e93fd3eb57920355d5c20eceefdf9fe0bc3b 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
|
| @@ -643,7 +643,6 @@ bool CSSParserFastPaths::isValidKeywordPropertyAndValue(CSSPropertyID propertyId
|
| case CSSPropertyWebkitBoxPack:
|
| return valueID == CSSValueStart || valueID == CSSValueEnd || valueID == CSSValueCenter || valueID == CSSValueJustify;
|
| case CSSPropertyColumnFill:
|
| - ASSERT(RuntimeEnabledFeatures::columnFillEnabled());
|
| return valueID == CSSValueAuto || valueID == CSSValueBalance;
|
| case CSSPropertyAlignContent:
|
| // FIXME: Per CSS alignment, this property should accept an optional <overflow-position>. We should share this parsing code with 'justify-self'.
|
|
|