| 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 c465e29f0a0273b7efebcac85ef9f08ed9f0c756..ce0d26eb5d550af9a80f7183c638e852c58fc757 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(
|
|
|