| Index: third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp b/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
|
| index a9c58b94a30caa786a7a805452e8139160c5fec2..5d3523339b4ef0b76431de5c1987dc46c633a7a5 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathStringSource.cpp
|
| @@ -217,9 +217,9 @@ PathSegmentData SVGPathStringSource::parseSegment()
|
| break;
|
| case PathSegArcRel:
|
| case PathSegArcAbs:
|
| - segment.point1.setX(parseNumberWithError()); // rx
|
| - segment.point1.setY(parseNumberWithError()); // ry
|
| - segment.point2.setX(parseNumberWithError()); // angle
|
| + segment.arcRadii().setX(parseNumberWithError());
|
| + segment.arcRadii().setY(parseNumberWithError());
|
| + segment.setArcAngle(parseNumberWithError());
|
| segment.arcLarge = parseArcFlagWithError();
|
| segment.arcSweep = parseArcFlagWithError();
|
| segment.targetPoint.setX(parseNumberWithError());
|
|
|