| Index: Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
|
| index bf6ae705ab3d0d4eafd47a67cdc7bfefe7e9422b..b1eba01594cfc60a3a2d19ee98513c6edbdaa95d 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -1514,13 +1514,6 @@ bool CSSPropertyParser::parseValue(CSSPropertyID unresolvedProperty, bool import
|
| parsedValue = parseTouchAction();
|
| break;
|
|
|
| - case CSSPropertyScrollBlocksOn:
|
| - if (id == CSSValueNone)
|
| - validPrimitive = true;
|
| - else
|
| - parsedValue = parseScrollBlocksOn();
|
| - break;
|
| -
|
| case CSSPropertyAlignContent:
|
| parsedValue = parseContentDistributionOverflowPosition();
|
| break;
|
| @@ -7141,31 +7134,6 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseTouchAction()
|
| return nullptr;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseScrollBlocksOn()
|
| -{
|
| - RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparated();
|
| - CSSParserValue* value = m_valueList->current();
|
| - while (value) {
|
| - switch (value->id) {
|
| - case CSSValueStartTouch:
|
| - case CSSValueWheelEvent:
|
| - case CSSValueScrollEvent: {
|
| - RefPtrWillBeRawPtr<CSSValue> flagValue = cssValuePool().createIdentifierValue(value->id);
|
| - if (list->hasValue(flagValue.get()))
|
| - return nullptr;
|
| - list->append(flagValue.release());
|
| - break;
|
| - }
|
| - default:
|
| - return nullptr;
|
| - }
|
| - value = m_valueList->next();
|
| - }
|
| -
|
| - ASSERT(list->length());
|
| - return list.release();
|
| -}
|
| -
|
| PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseTextDecoration()
|
| {
|
| CSSParserValue* value = m_valueList->current();
|
|
|