| 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 76d4faa064d462457ae8ba7a4f15f74ede03843a..f78caea467d7ea1c2e84490cbc38fe27c086be42 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -3301,7 +3301,7 @@ const CSSValue* ComputedStyleCSSValueMapping::Get(
|
| case CSSPropertyWebkitWritingMode:
|
| return CSSIdentifierValue::Create(style.GetWritingMode());
|
| case CSSPropertyWebkitTextCombine:
|
| - if (style.GetTextCombine() == kTextCombineAll)
|
| + if (style.GetTextCombine() == TextCombine::kAll)
|
| return CSSIdentifierValue::Create(CSSValueHorizontal);
|
| case CSSPropertyTextCombineUpright:
|
| return CSSIdentifierValue::Create(style.GetTextCombine());
|
|
|