| Index: Source/core/css/CSSParser-in.cpp
|
| diff --git a/Source/core/css/CSSParser-in.cpp b/Source/core/css/CSSParser-in.cpp
|
| index a63d5b7043425d4dfc131493b100dad8254f18ad..9653ea2c2ea261e1ebb281d071c689ea70f87258 100644
|
| --- a/Source/core/css/CSSParser-in.cpp
|
| +++ b/Source/core/css/CSSParser-in.cpp
|
| @@ -2182,7 +2182,7 @@ bool CSSParser::parseValue(CSSPropertyID propId, bool important)
|
| break;
|
|
|
| case CSSPropertyTextUnderlinePosition:
|
| - // auto | alphabetic | under
|
| + // auto | under | inherit
|
| if (RuntimeEnabledFeatures::css3TextDecorationsEnabled())
|
| return parseTextUnderlinePosition(important);
|
| return false;
|
| @@ -9134,13 +9134,12 @@ bool CSSParser::parseTextDecoration(CSSPropertyID propId, bool important)
|
|
|
| bool CSSParser::parseTextUnderlinePosition(bool important)
|
| {
|
| - // The text-underline-position property has sintax "auto | alphabetic | [ under || [ left | right ] ]".
|
| - // However, values 'left' and 'right' are not implemented yet, so we will parse sintax
|
| - // "auto | alphabetic | under" for now.
|
| + // The text-underline-position property has syntax "auto | [ under || [ left | right ] ]".
|
| + // However, values 'left' and 'right' are not implemented yet, so we will parse syntax
|
| + // "auto | under" for now.
|
| CSSParserValue* value = m_valueList->current();
|
| switch (value->id) {
|
| case CSSValueAuto:
|
| - case CSSValueAlphabetic:
|
| case CSSValueUnder:
|
| if (m_valueList->next())
|
| return false;
|
|
|