| Index: Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| diff --git a/Source/core/svg/SVGFEDisplacementMapElement.cpp b/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| index f05893c6769afe070f36ffb4c3d1e50096350627..0e29fe323895602594b6759a208ef6c1337620f2 100644
|
| --- a/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| +++ b/Source/core/svg/SVGFEDisplacementMapElement.cpp
|
| @@ -39,7 +39,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<ChannelSele
|
| return entries;
|
| }
|
|
|
| -SVGFEDisplacementMapElement::SVGFEDisplacementMapElement(Document& document)
|
| +inline SVGFEDisplacementMapElement::SVGFEDisplacementMapElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feDisplacementMapTag, document)
|
| , m_scale(SVGAnimatedNumber::create(this, SVGNames::scaleAttr, SVGNumber::create(0)))
|
| , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
|
| @@ -56,6 +56,8 @@ SVGFEDisplacementMapElement::SVGFEDisplacementMapElement(Document& document)
|
| addToPropertyMap(m_yChannelSelector);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEDisplacementMapElement)
|
| +
|
| bool SVGFEDisplacementMapElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|