| Index: third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
|
| index b23a1fa410a5a867492ac69df5159d84c4a6116d..354a7887ad13a5431952b9d0670e7bb2c4300faa 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
|
| @@ -176,8 +176,9 @@ InterpolationValue convertBorderImageLengthBox(const BorderImageLengthBox& box,
|
| }
|
|
|
| return InterpolationValue(
|
| - std::move(list), CSSBorderImageLengthBoxNonInterpolableValue::create(
|
| - SideNumbers(box), std::move(nonInterpolableValues)));
|
| + std::move(list),
|
| + CSSBorderImageLengthBoxNonInterpolableValue::create(
|
| + SideNumbers(box), std::move(nonInterpolableValues)));
|
| }
|
|
|
| } // namespace
|
| @@ -243,8 +244,9 @@ InterpolationValue CSSBorderImageLengthBoxInterpolationType::maybeConvertValue(
|
| for (size_t i = 0; i < SideIndexCount; i++) {
|
| const CSSValue& side = *sides[i];
|
| if (side.isPrimitiveValue() && toCSSPrimitiveValue(side).isNumber()) {
|
| - list->set(i, InterpolableNumber::create(
|
| - toCSSPrimitiveValue(side).getDoubleValue()));
|
| + list->set(i,
|
| + InterpolableNumber::create(
|
| + toCSSPrimitiveValue(side).getDoubleValue()));
|
| } else {
|
| InterpolationValue convertedSide =
|
| LengthInterpolationFunctions::maybeConvertCSSValue(side);
|
|
|