| Index: Source/core/svg/SVGFECompositeElement.cpp
|
| diff --git a/Source/core/svg/SVGFECompositeElement.cpp b/Source/core/svg/SVGFECompositeElement.cpp
|
| index 57e63ff99702611e70fd0d2c525cb29e26d263b5..846cadb6cb08f15d7325bab0db5689a9ceb31ea8 100644
|
| --- a/Source/core/svg/SVGFECompositeElement.cpp
|
| +++ b/Source/core/svg/SVGFECompositeElement.cpp
|
| @@ -42,7 +42,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<CompositeOp
|
| return entries;
|
| }
|
|
|
| -SVGFECompositeElement::SVGFECompositeElement(Document& document)
|
| +inline SVGFECompositeElement::SVGFECompositeElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feCompositeTag, document)
|
| , m_k1(SVGAnimatedNumber::create(this, SVGNames::k1Attr, SVGNumber::create()))
|
| , m_k2(SVGAnimatedNumber::create(this, SVGNames::k2Attr, SVGNumber::create()))
|
| @@ -63,6 +63,8 @@ SVGFECompositeElement::SVGFECompositeElement(Document& document)
|
| addToPropertyMap(m_svgOperator);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFECompositeElement)
|
| +
|
| bool SVGFECompositeElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|