| 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 1b7bfb4d1f4887d1c40acf5dfef7b605c59800eb..39ac942aad9b8ce76275ccacdd4eb1b6a9b68713 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -3597,6 +3597,10 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
|
| case CSSPropertyColor:
|
| case CSSPropertyBackgroundColor:
|
| return consumeColor(m_range, m_context.mode(), inQuirksMode());
|
| + case CSSPropertyCaretColor:
|
| + if (m_range.peek().id() == CSSValueAuto)
|
| + return consumeIdent(m_range);
|
| + return consumeColor(m_range, m_context.mode());
|
| case CSSPropertyWebkitBorderStartWidth:
|
| case CSSPropertyWebkitBorderEndWidth:
|
| case CSSPropertyWebkitBorderBeforeWidth:
|
|
|