Index: third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp |
index 041195d9fea831d10417cd561cfb125ed88256c0..eda675c174c2c5d8b247a5ff3d0e0791562d9f3c 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp |
@@ -130,8 +130,7 @@ SVGPointTearOff* SVGGeometryElement::getPointAtLength(float length) { |
FloatPoint point; |
if (GetLayoutObject()) |
point = AsPath().PointAtLength(length); |
- return SVGPointTearOff::Create(SVGPoint::Create(point), 0, |
- kPropertyIsNotAnimVal); |
+ return SVGPointTearOff::CreateDetached(point); |
} |
float SVGGeometryElement::ComputePathLength() const { |