Index: third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
index 59bc62a1d21f4faa2c0110909b4e322c0d14c5c4..5607150568f1e09a0c1e9c9ba0620a969f708302 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp |
@@ -145,8 +145,9 @@ InterpolationValue convertImageSlice(const ImageSlice& slice, double zoom) { |
for (size_t i = 0; i < SideIndexCount; i++) { |
const Length& side = *sides[i]; |
- list->set(i, InterpolableNumber::create( |
- side.isFixed() ? side.pixels() / zoom : side.percent())); |
+ list->set(i, |
+ InterpolableNumber::create(side.isFixed() ? side.pixels() / zoom |
+ : side.percent())); |
} |
return InterpolationValue( |