| Index: Source/core/svg/SVGFEOffsetElement.cpp
|
| diff --git a/Source/core/svg/SVGFEOffsetElement.cpp b/Source/core/svg/SVGFEOffsetElement.cpp
|
| index 1737488c9fa26b9c235a56ecbc0b2dc7b42f9946..a763f75771291ce361ba933c3952ce6bdd244e98 100644
|
| --- a/Source/core/svg/SVGFEOffsetElement.cpp
|
| +++ b/Source/core/svg/SVGFEOffsetElement.cpp
|
| @@ -28,7 +28,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFEOffsetElement::SVGFEOffsetElement(Document& document)
|
| +inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document)
|
| , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create()))
|
| , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create()))
|
| @@ -41,6 +41,8 @@ SVGFEOffsetElement::SVGFEOffsetElement(Document& document)
|
| addToPropertyMap(m_in1);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEOffsetElement)
|
| +
|
| bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|