Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
index 1192364103285936c159c24209515a8382b4ff2e..152d972b71e7249d8366520b2e2459e5ada5c135 100644 |
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp |
@@ -2880,9 +2880,9 @@ const CSSValue* ComputedStyleCSSValueMapping::Get( |
CSSValueList* list = CSSValueList::CreateSpaceSeparated(); |
list->Append(*ZoomAdjustedPixelValueForLength(style.TextIndent(), style)); |
if (RuntimeEnabledFeatures::css3TextEnabled() && |
- (style.GetTextIndentLine() == kTextIndentEachLine || |
+ (style.GetTextIndentLine() == TextIndentLine::kEachLine || |
style.GetTextIndentType() == kTextIndentHanging)) { |
- if (style.GetTextIndentLine() == kTextIndentEachLine) |
+ if (style.GetTextIndentLine() == TextIndentLine::kEachLine) |
list->Append(*CSSIdentifierValue::Create(CSSValueEachLine)); |
if (style.GetTextIndentType() == kTextIndentHanging) |
list->Append(*CSSIdentifierValue::Create(CSSValueHanging)); |