| Index: Source/core/svg/SVGFEBlendElement.cpp
|
| diff --git a/Source/core/svg/SVGFEBlendElement.cpp b/Source/core/svg/SVGFEBlendElement.cpp
|
| index b248cedbb819b693d784da4415c4465d613a65a6..2d71aa167fca1f9654862a817c303fa948b94165 100644
|
| --- a/Source/core/svg/SVGFEBlendElement.cpp
|
| +++ b/Source/core/svg/SVGFEBlendElement.cpp
|
| @@ -41,7 +41,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<BlendModeTy
|
| return entries;
|
| }
|
|
|
| -SVGFEBlendElement::SVGFEBlendElement(Document& document)
|
| +inline SVGFEBlendElement::SVGFEBlendElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feBlendTag, document)
|
| , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
|
| , m_in2(SVGAnimatedString::create(this, SVGNames::in2Attr, SVGString::create()))
|
| @@ -53,6 +53,8 @@ SVGFEBlendElement::SVGFEBlendElement(Document& document)
|
| addToPropertyMap(m_mode);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEBlendElement)
|
| +
|
| bool SVGFEBlendElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|