| Index: third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
|
| index 7cfe05ebcfba1f30c1fb43bba5d7f6a8d4e4a07d..96bb4c887b1f01a460bbe0e1a1ea36404dcb4cc4 100644
|
| --- a/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
|
| @@ -68,7 +68,8 @@ std::unique_ptr<InterpolableValue> consumeSingleCoordinate(
|
| 1, consumeCoordinateAxis(segment.y(), isAbsolute, coordinates.currentY));
|
|
|
| if (toAbsolutePathSegType(segment.command) == PathSegMoveToAbs) {
|
| - // Any upcoming 'closepath' commands bring us back to the location we have just moved to.
|
| + // Any upcoming 'closepath' commands bring us back to the location we have
|
| + // just moved to.
|
| coordinates.initialX = coordinates.currentX;
|
| coordinates.initialY = coordinates.currentY;
|
| }
|
| @@ -90,7 +91,8 @@ PathSegmentData consumeInterpolableSingleCoordinate(
|
| list.get(1), isAbsolute, coordinates.currentY));
|
|
|
| if (toAbsolutePathSegType(segType) == PathSegMoveToAbs) {
|
| - // Any upcoming 'closepath' commands bring us back to the location we have just moved to.
|
| + // Any upcoming 'closepath' commands bring us back to the location we have
|
| + // just moved to.
|
| coordinates.initialX = coordinates.currentX;
|
| coordinates.initialY = coordinates.currentY;
|
| }
|
|
|