Index: Source/core/svg/SVGFEImageElement.cpp |
diff --git a/Source/core/svg/SVGFEImageElement.cpp b/Source/core/svg/SVGFEImageElement.cpp |
index 1c55feb79b8c4d7ed3492cfb9b3f3920b266fb29..37606d7ac1d5d8d7379d172f4eda7458c4c71c5c 100644 |
--- a/Source/core/svg/SVGFEImageElement.cpp |
+++ b/Source/core/svg/SVGFEImageElement.cpp |
@@ -35,9 +35,10 @@ namespace blink { |
inline SVGFEImageElement::SVGFEImageElement(Document& document) |
: SVGFilterPrimitiveStandardAttributes(SVGNames::feImageTag, document) |
- , SVGURIReference(this) |
, m_preserveAspectRatio(SVGAnimatedPreserveAspectRatio::create(this, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio::create())) |
{ |
+ SVGURIReference::initialize(this); |
+ |
addToPropertyMap(m_preserveAspectRatio); |
} |