Index: Source/core/svg/SVGPathSegMovetoRel.h |
diff --git a/Source/core/svg/SVGPathSegMovetoRel.h b/Source/core/svg/SVGPathSegMovetoRel.h |
index ba4228d6eb0ab1ada95e5cbec03cf56e606b1316..8168d81da1594d426ff34f5fc086bc8af276530c 100644 |
--- a/Source/core/svg/SVGPathSegMovetoRel.h |
+++ b/Source/core/svg/SVGPathSegMovetoRel.h |
@@ -34,6 +34,11 @@ public: |
return adoptRefWillBeNoop(new SVGPathSegMovetoRel(element, x, y)); |
} |
+ PassRefPtrWillBeRawPtr<SVGPathSeg> clone() override |
+ { |
+ return adoptRefWillBeNoop(new SVGPathSegMovetoRel(nullptr, x(), y())); |
+ } |
+ |
private: |
SVGPathSegMovetoRel(SVGPathElement* element, float x, float y) |
: SVGPathSegSingleCoordinate(element, x, y) { } |