| 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 080eacf2f821cb72b9e02498c86d1ed89a7a449a..c35f0e700e6c30195f70bf04a9d2d4e452a4c46e 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -329,12 +329,6 @@ static CSSValue* consumeFontFeatureSettings(CSSParserTokenRange& range) {
|
| return settings;
|
| }
|
|
|
| -static CSSValue* consumePage(CSSParserTokenRange& range) {
|
| - if (range.peek().id() == CSSValueAuto)
|
| - return consumeIdent(range);
|
| - return consumeCustomIdent(range);
|
| -}
|
| -
|
| static CSSValue* consumeQuotes(CSSParserTokenRange& range) {
|
| if (range.peek().id() == CSSValueNone)
|
| return consumeIdent(range);
|
| @@ -3228,8 +3222,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
|
| return cssPropertyDesc.parseSingleValue(m_range, m_context);
|
|
|
| switch (property) {
|
| - case CSSPropertyPage:
|
| - return consumePage(m_range);
|
| case CSSPropertyQuotes:
|
| return consumeQuotes(m_range);
|
| case CSSPropertyWebkitHighlight:
|
|
|