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

Unified Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 57493002: Remove 'alphabetic' value from text-underline-position (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing Created 7 years, 1 month 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
« no previous file with comments | « Source/core/css/CSSParser-in.cpp ('k') | Source/core/rendering/InlineTextBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/Source/core/css/CSSPrimitiveValueMappings.h b/Source/core/css/CSSPrimitiveValueMappings.h
index b3c7f5a4df0def13a58b929457b6cb872d1699d0..c88c0e42b56f3ebae69e895b4f81e0bc27733af2 100644
--- a/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/Source/core/css/CSSPrimitiveValueMappings.h
@@ -2505,9 +2505,6 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(TextUnderlinePosition e)
case TextUnderlinePositionAuto:
m_value.valueID = CSSValueAuto;
break;
- case TextUnderlinePositionAlphabetic:
- m_value.valueID = CSSValueAlphabetic;
- break;
case TextUnderlinePositionUnder:
m_value.valueID = CSSValueUnder;
break;
@@ -2522,8 +2519,6 @@ template<> inline CSSPrimitiveValue::operator TextUnderlinePosition() const
switch (m_value.valueID) {
case CSSValueAuto:
return TextUnderlinePositionAuto;
- case CSSValueAlphabetic:
- return TextUnderlinePositionAlphabetic;
case CSSValueUnder:
return TextUnderlinePositionUnder;
default:
« no previous file with comments | « Source/core/css/CSSParser-in.cpp ('k') | Source/core/rendering/InlineTextBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698