| Index: Source/core/svg/SVGFESpecularLightingElement.cpp
|
| diff --git a/Source/core/svg/SVGFESpecularLightingElement.cpp b/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| index a1be26a29cad3720e0a022130be960396b89dbfe..422b6a4cb8ac3358d5ae2d39397eae45b3be57f5 100644
|
| --- a/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| +++ b/Source/core/svg/SVGFESpecularLightingElement.cpp
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGFESpecularLightingElement::SVGFESpecularLightingElement(Document& document)
|
| +inline SVGFESpecularLightingElement::SVGFESpecularLightingElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feSpecularLightingTag, document)
|
| , m_specularConstant(SVGAnimatedNumber::create(this, SVGNames::specularConstantAttr, SVGNumber::create(1)))
|
| , m_specularExponent(SVGAnimatedNumber::create(this, SVGNames::specularExponentAttr, SVGNumber::create(1)))
|
| @@ -47,6 +47,8 @@ SVGFESpecularLightingElement::SVGFESpecularLightingElement(Document& document)
|
| addToPropertyMap(m_in1);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFESpecularLightingElement)
|
| +
|
| bool SVGFESpecularLightingElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|