Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

Issue 2614903002: Implements CSSPropertyAPI for the text-underline-position property. (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 2ae352939d06b22e9ba67a8468e8ee2a06ec0fba..b4ebb79b59b6ffa2c49923692040f28a93f503be 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -3709,11 +3709,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:

Powered by Google App Engine
This is Rietveld 408576698