| 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 c1f9099aa4cf6269c3de013198897f7ace6e5d74..ad3bcca529c4687f6b204868e9ccd0428792bec3 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -409,12 +409,6 @@ static CSSValue* consumeQuotes(CSSParserTokenRange& range) {
|
| return nullptr;
|
| }
|
|
|
| -static CSSValue* consumeWebkitHighlight(CSSParserTokenRange& range) {
|
| - if (range.peek().id() == CSSValueNone)
|
| - return consumeIdent(range);
|
| - return consumeString(range);
|
| -}
|
| -
|
| class FontVariantLigaturesParser {
|
| STACK_ALLOCATED();
|
|
|
| @@ -3417,8 +3411,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
|
| return consumePage(m_range);
|
| case CSSPropertyQuotes:
|
| return consumeQuotes(m_range);
|
| - case CSSPropertyWebkitHighlight:
|
| - return consumeWebkitHighlight(m_range);
|
| case CSSPropertyFontVariantCaps:
|
| return consumeFontVariantCaps(m_range);
|
| case CSSPropertyFontVariantLigatures:
|
|
|