Index: Source/core/svg/SVGForeignObjectElement.cpp |
diff --git a/Source/core/svg/SVGForeignObjectElement.cpp b/Source/core/svg/SVGForeignObjectElement.cpp |
index 761ede015d8c441342cb64989c20c8bd393b3471..71195324621f2e170635defa42350c00f66db849 100644 |
--- a/Source/core/svg/SVGForeignObjectElement.cpp |
+++ b/Source/core/svg/SVGForeignObjectElement.cpp |
@@ -37,8 +37,6 @@ inline SVGForeignObjectElement::SVGForeignObjectElement(Document& document) |
, m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)) |
, m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths)) |
{ |
- ScriptWrappable::init(this); |
- |
addToPropertyMap(m_x); |
addToPropertyMap(m_y); |
addToPropertyMap(m_width); |
@@ -147,4 +145,4 @@ bool SVGForeignObjectElement::selfHasRelativeLengths() const |
|| m_height->currentValue()->isRelative(); |
} |
-} |
+} // namespace blink |