| Index: Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h | 
| diff --git a/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h b/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h | 
| index cd1caad104c1c15abbd66dc45efe18878ab41d06..4d682f3371e8389a932fe0371c2e33f3bccfa0c6 100644 | 
| --- a/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h | 
| +++ b/Source/core/svg/SVGPathSegCurvetoQuadraticAbs.h | 
| @@ -34,6 +34,11 @@ public: | 
| return adoptRefWillBeNoop(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1)); | 
| } | 
|  | 
| +    virtual PassRefPtrWillBeRawPtr<SVGPathSeg> clone() override | 
| +    { | 
| +        return adoptRefWillBeNoop(new SVGPathSegCurvetoQuadraticAbs(nullptr, x(), y(), x1(), y1())); | 
| +    } | 
| + | 
| private: | 
| SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, float x, float y, float x1, float y1) | 
| : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { } | 
|  |