| Index: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| index 909904ef298581529698c93e6ef86d1fb8f4a795..0ce638345d8b3bd013d30569805bdcb189ca6e97 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| @@ -827,14 +827,14 @@ void StyleBuilderFunctions::applyValueCSSPropertyTextOrientation(
|
| StyleResolverState& state,
|
| const CSSValue& value) {
|
| state.SetTextOrientation(
|
| - ToCSSIdentifierValue(value).ConvertTo<TextOrientation>());
|
| + ToCSSIdentifierValue(value).ConvertTo<ETextOrientation>());
|
| }
|
|
|
| void StyleBuilderFunctions::applyValueCSSPropertyWebkitTextOrientation(
|
| StyleResolverState& state,
|
| const CSSValue& value) {
|
| state.SetTextOrientation(
|
| - ToCSSIdentifierValue(value).ConvertTo<TextOrientation>());
|
| + ToCSSIdentifierValue(value).ConvertTo<ETextOrientation>());
|
| }
|
|
|
| void StyleBuilderFunctions::applyValueCSSPropertyVariable(
|
|
|