| 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 2ae6d04a6ea812e4e6019fd9e7c2a6f5468399f7..2dc99044c8097dcf8e2bdb0896a11071bb57b7d9 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -2881,10 +2881,10 @@ const CSSValue* ComputedStyleCSSValueMapping::Get(
|
| list->Append(*ZoomAdjustedPixelValueForLength(style.TextIndent(), style));
|
| if (RuntimeEnabledFeatures::css3TextEnabled() &&
|
| (style.GetTextIndentLine() == TextIndentLine::kEachLine ||
|
| - style.GetTextIndentType() == kTextIndentHanging)) {
|
| + style.GetTextIndentType() == TextIndentType::kHanging)) {
|
| if (style.GetTextIndentLine() == TextIndentLine::kEachLine)
|
| list->Append(*CSSIdentifierValue::Create(CSSValueEachLine));
|
| - if (style.GetTextIndentType() == kTextIndentHanging)
|
| + if (style.GetTextIndentType() == TextIndentType::kHanging)
|
| list->Append(*CSSIdentifierValue::Create(CSSValueHanging));
|
| }
|
| return list;
|
|
|