| Index: third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp b/third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp
|
| index 0fcd3385a1a3c1f87ea3270526eac45166ab8f77..96f43a2071da30b3cfe6f500a62725d4ef548e8c 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp
|
| @@ -56,12 +56,7 @@ void SVGPathBuilder::emitMoveTo(const FloatPoint& p)
|
| {
|
| m_path.moveTo(p);
|
|
|
| - // If a "closepath" is followed immediately by a "moveto", then
|
| - // the "moveto" identifies the start point of the next subpath.
|
| - // [https://www.w3.org/TR/SVG/paths.html#PathDataClosePathCommand]
|
| - if (m_lastCommand == PathSegClosePath)
|
| - m_subpathPoint = p;
|
| -
|
| + m_subpathPoint = p;
|
| m_currentPoint = p;
|
| }
|
|
|
|
|