| Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| index 4860e46454bfb0eeae8c9b1d16b99993403395cf..3f7e3811e66617ed225ff4ca4438b0d17049fce6 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -2767,7 +2767,7 @@ static CSSValue* consumeBasicShape(CSSParserTokenRange& range, const CSSParserCo
|
| return shape;
|
| }
|
|
|
| -static CSSValue* consumeClipPath(CSSParserTokenRange& range, const CSSParserContext& context)
|
| +static CSSValue* consumeWebkitClipPath(CSSParserTokenRange& range, const CSSParserContext& context)
|
| {
|
| if (range.peek().id() == CSSValueNone)
|
| return consumeIdent(range);
|
| @@ -3888,7 +3888,7 @@ const CSSValue* CSSPropertyParser::parseSingleValue(CSSPropertyID unresolvedProp
|
| case CSSPropertyShapeOutside:
|
| return consumeShapeOutside(m_range, m_context);
|
| case CSSPropertyWebkitClipPath:
|
| - return consumeClipPath(m_range, m_context);
|
| + return consumeWebkitClipPath(m_range, m_context);
|
| case CSSPropertyJustifyContent:
|
| case CSSPropertyAlignContent:
|
| ASSERT(RuntimeEnabledFeatures::cssGridLayoutEnabled());
|
|
|