| Index: third_party/WebKit/Source/core/svg/SVGPathByteStreamSource.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathByteStreamSource.cpp b/third_party/WebKit/Source/core/svg/SVGPathByteStreamSource.cpp
|
| index 5511d57e0d9bf0664946530c924ff82286f02b69..ae38a657af4bca41ea6eb1f1562b8975aa8d4bb1 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathByteStreamSource.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathByteStreamSource.cpp
|
| @@ -76,8 +76,8 @@ PathSegmentData SVGPathByteStreamSource::parseSegment()
|
| break;
|
| case PathSegArcRel:
|
| case PathSegArcAbs: {
|
| - segment.point1 = readFloatPoint(); // rx and ry
|
| - segment.point2.setX(readFloat()); // angle
|
| + segment.arcRadii() = readFloatPoint();
|
| + segment.setArcAngle(readFloat());
|
| segment.arcLarge = readFlag();
|
| segment.arcSweep = readFlag();
|
| segment.targetPoint = readFloatPoint();
|
|
|