| Index: Source/core/svg/SVGTextPathElement.cpp
|
| diff --git a/Source/core/svg/SVGTextPathElement.cpp b/Source/core/svg/SVGTextPathElement.cpp
|
| index 7a6e29454186e2dbe2f3fda0a1a6d0733865f80d..9ec401e109dcba6e4d74fa4e355c3279d3c30bbb 100644
|
| --- a/Source/core/svg/SVGTextPathElement.cpp
|
| +++ b/Source/core/svg/SVGTextPathElement.cpp
|
| @@ -49,12 +49,11 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGTextPath
|
|
|
| inline SVGTextPathElement::SVGTextPathElement(Document& document)
|
| : SVGTextContentElement(SVGNames::textPathTag, document)
|
| + , SVGURIReference(this)
|
| , m_startOffset(SVGAnimatedLength::create(this, SVGNames::startOffsetAttr, SVGLength::create(SVGLengthMode::Other), AllowNegativeLengths))
|
| , m_method(SVGAnimatedEnumeration<SVGTextPathMethodType>::create(this, SVGNames::methodAttr, SVGTextPathMethodAlign))
|
| , m_spacing(SVGAnimatedEnumeration<SVGTextPathSpacingType>::create(this, SVGNames::spacingAttr, SVGTextPathSpacingExact))
|
| {
|
| - SVGURIReference::initialize(this);
|
| -
|
| addToPropertyMap(m_startOffset);
|
| addToPropertyMap(m_method);
|
| addToPropertyMap(m_spacing);
|
|
|