| Index: third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| index 676746e868b5104587f1512178bc89f8341a5fee..f891a4f888452bd166e00f213e6ac241abc6b0e2 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
|
| @@ -79,15 +79,18 @@ InterpolationValue convertTranslateOperation(
|
|
|
| std::unique_ptr<InterpolableList> result =
|
| InterpolableList::create(TranslateComponentIndexCount);
|
| - result->set(TranslateX, LengthInterpolationFunctions::maybeConvertLength(
|
| - translate->x(), zoom)
|
| - .interpolableValue);
|
| - result->set(TranslateY, LengthInterpolationFunctions::maybeConvertLength(
|
| - translate->y(), zoom)
|
| - .interpolableValue);
|
| - result->set(TranslateZ, LengthInterpolationFunctions::maybeConvertLength(
|
| - Length(translate->z(), Fixed), zoom)
|
| - .interpolableValue);
|
| + result->set(
|
| + TranslateX,
|
| + LengthInterpolationFunctions::maybeConvertLength(translate->x(), zoom)
|
| + .interpolableValue);
|
| + result->set(
|
| + TranslateY,
|
| + LengthInterpolationFunctions::maybeConvertLength(translate->y(), zoom)
|
| + .interpolableValue);
|
| + result->set(TranslateZ,
|
| + LengthInterpolationFunctions::maybeConvertLength(
|
| + Length(translate->z(), Fixed), zoom)
|
| + .interpolableValue);
|
| return InterpolationValue(std::move(result));
|
| }
|
|
|
|
|