| 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 889057eb9b0c915b6b148087dfc6b2a5e37851bc..a1305d36c7fdf601aedf7655609931933dfecf87 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -2273,7 +2273,7 @@ const CSSValue* ComputedStyleCSSValueMapping::Get(
|
| case CSSPropertyWebkitBoxAlign:
|
| return CSSIdentifierValue::Create(style.BoxAlign());
|
| case CSSPropertyWebkitBoxDecorationBreak:
|
| - if (style.BoxDecorationBreak() == kBoxDecorationBreakSlice)
|
| + if (style.BoxDecorationBreak() == EBoxDecorationBreak::kSlice)
|
| return CSSIdentifierValue::Create(CSSValueSlice);
|
| return CSSIdentifierValue::Create(CSSValueClone);
|
| case CSSPropertyWebkitBoxDirection:
|
|
|