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 d2cf85dbc71e1ba03109c949f268114110a6463c..4326ed1c1b7fdca7d49b34993eb5b231eb573bb8 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -3754,11 +3754,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue( |
return consumeInteger(m_range, 0); |
case CSSPropertyOrder: |
return consumeInteger(m_range); |
- case CSSPropertyTextUnderlinePosition: |
- // auto | [ under || [ left | right ] ], but we only support auto | under |
- // for now |
- ASSERT(RuntimeEnabledFeatures::css3TextDecorationsEnabled()); |
- return consumeIdent<CSSValueAuto, CSSValueUnder>(m_range); |
case CSSPropertyVerticalAlign: |
return consumeVerticalAlign(m_range, m_context.mode()); |
case CSSPropertyShapeOutside: |