| Index: Source/core/svg/SVGFETileElement.cpp
|
| diff --git a/Source/core/svg/SVGFETileElement.cpp b/Source/core/svg/SVGFETileElement.cpp
|
| index 4e691488a64cb601465f36a57f81e31cc364933f..671e03e0198d1bed0f03b6c5f81260d07018a341 100644
|
| --- a/Source/core/svg/SVGFETileElement.cpp
|
| +++ b/Source/core/svg/SVGFETileElement.cpp
|
| @@ -28,7 +28,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFETileElement::SVGFETileElement(Document& document)
|
| +inline SVGFETileElement::SVGFETileElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document)
|
| , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
|
| {
|
| @@ -36,6 +36,8 @@ SVGFETileElement::SVGFETileElement(Document& document)
|
| addToPropertyMap(m_in1);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFETileElement)
|
| +
|
| bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|