| Index: Source/core/svg/SVGFEComponentTransferElement.cpp
|
| diff --git a/Source/core/svg/SVGFEComponentTransferElement.cpp b/Source/core/svg/SVGFEComponentTransferElement.cpp
|
| index 3def9964a138b80a101a0e0fd1dbf69c4cc51949..a5f49fefefdf6779f7bf2dbbee7876f2358bf54f 100644
|
| --- a/Source/core/svg/SVGFEComponentTransferElement.cpp
|
| +++ b/Source/core/svg/SVGFEComponentTransferElement.cpp
|
| @@ -33,7 +33,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFEComponentTransferElement::SVGFEComponentTransferElement(Document& document)
|
| +inline SVGFEComponentTransferElement::SVGFEComponentTransferElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feComponentTransferTag, document)
|
| , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
|
| {
|
| @@ -41,6 +41,8 @@ SVGFEComponentTransferElement::SVGFEComponentTransferElement(Document& document)
|
| addToPropertyMap(m_in1);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEComponentTransferElement)
|
| +
|
| bool SVGFEComponentTransferElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|