| 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 ef2812caee753364ffa0272b89b7ff5042f24af8..e3c41b2ec5d7302c1a113db7b5443f08a4d38d6a 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp
|
| @@ -361,34 +361,6 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::legacyParseValue(CSSProperty
|
| parsedValue = parseBorderImage(propId);
|
| break;
|
|
|
| - case CSSPropertyBorderImageOutset:
|
| - case CSSPropertyWebkitMaskBoxImageOutset: {
|
| - RefPtrWillBeRawPtr<CSSQuadValue> result = nullptr;
|
| - if (parseBorderImageOutset(result))
|
| - return result.release();
|
| - return nullptr;
|
| - }
|
| - case CSSPropertyBorderImageRepeat:
|
| - case CSSPropertyWebkitMaskBoxImageRepeat: {
|
| - RefPtrWillBeRawPtr<CSSValue> result = nullptr;
|
| - if (parseBorderImageRepeat(result))
|
| - return result.release();
|
| - return nullptr;
|
| - }
|
| - case CSSPropertyBorderImageSlice:
|
| - case CSSPropertyWebkitMaskBoxImageSlice: {
|
| - RefPtrWillBeRawPtr<CSSBorderImageSliceValue> result = nullptr;
|
| - if (parseBorderImageSlice(propId, result))
|
| - return result.release();
|
| - return nullptr;
|
| - }
|
| - case CSSPropertyBorderImageWidth:
|
| - case CSSPropertyWebkitMaskBoxImageWidth: {
|
| - RefPtrWillBeRawPtr<CSSQuadValue> result = nullptr;
|
| - if (parseBorderImageWidth(result))
|
| - return result.release();
|
| - return nullptr;
|
| - }
|
| case CSSPropertyWebkitBoxReflect:
|
| if (id == CSSValueNone)
|
| validPrimitive = true;
|
|
|