| Index: Source/core/svg/SVGPathSegLinetoVertical.h
|
| diff --git a/Source/core/svg/SVGPathSegLinetoVertical.h b/Source/core/svg/SVGPathSegLinetoVertical.h
|
| index 34a98e69c798f1b0ab91dd7f1c34260110abb63c..9fb4d8c3ec09e084f3f06e4b970fdf8d626a07e0 100644
|
| --- a/Source/core/svg/SVGPathSegLinetoVertical.h
|
| +++ b/Source/core/svg/SVGPathSegLinetoVertical.h
|
| @@ -55,6 +55,7 @@ private:
|
| SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y)
|
| : SVGPathSegLinetoVertical(element, role, y)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_ABS; }
|
| @@ -72,6 +73,7 @@ private:
|
| SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y)
|
| : SVGPathSegLinetoVertical(element, role, y)
|
| {
|
| + ScriptWrappable::init(this);
|
| }
|
|
|
| virtual unsigned short pathSegType() const { return PATHSEG_LINETO_VERTICAL_REL; }
|
|
|