| 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 25fc518381ba7fd561ecb36261ffc63c6f8caa4d..cdc811507842d9697ddd6bd6728ae9c66e8f4108 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -1498,26 +1498,6 @@ static CSSValue* consumeClipPath(CSSParserTokenRange& range,
|
| return CSSPropertyShapeUtils::consumeBasicShape(range, context);
|
| }
|
|
|
| -static CSSValue* consumeShapeOutside(CSSParserTokenRange& range,
|
| - const CSSParserContext* context) {
|
| - if (CSSValue* imageValue = consumeImageOrNone(range, context))
|
| - return imageValue;
|
| - CSSValueList* list = CSSValueList::createSpaceSeparated();
|
| - if (CSSValue* boxValue = consumeShapeBox(range))
|
| - list->append(*boxValue);
|
| - if (CSSValue* shapeValue =
|
| - CSSPropertyShapeUtils::consumeBasicShape(range, context)) {
|
| - list->append(*shapeValue);
|
| - if (list->length() < 2) {
|
| - if (CSSValue* boxValue = consumeShapeBox(range))
|
| - list->append(*boxValue);
|
| - }
|
| - }
|
| - if (!list->length())
|
| - return nullptr;
|
| - return list;
|
| -}
|
| -
|
| static CSSValue* consumeContentDistributionOverflowPosition(
|
| CSSParserTokenRange& range) {
|
| if (identMatches<CSSValueNormal, CSSValueBaseline, CSSValueLastBaseline>(
|
| @@ -2641,8 +2621,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
|
| return consumeScrollSnapPoints(m_range, m_context->mode());
|
| case CSSPropertyOrder:
|
| return consumeInteger(m_range);
|
| - case CSSPropertyShapeOutside:
|
| - return consumeShapeOutside(m_range, m_context);
|
| case CSSPropertyClipPath:
|
| return consumeClipPath(m_range, m_context);
|
| case CSSPropertyJustifyContent:
|
|
|