| Index: Source/core/svg/SVGClipPathElement.cpp
|
| diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp
|
| index c063c648c3a4fa852998ae9fe0c736530384aa46..670baa36632835c38958848fdc0fbd157cab8780 100644
|
| --- a/Source/core/svg/SVGClipPathElement.cpp
|
| +++ b/Source/core/svg/SVGClipPathElement.cpp
|
| @@ -27,7 +27,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGClipPathElement::SVGClipPathElement(Document& document)
|
| +inline SVGClipPathElement::SVGClipPathElement(Document& document)
|
| : SVGGraphicsElement(SVGNames::clipPathTag, document)
|
| , m_clipPathUnits(SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>::create(this, SVGNames::clipPathUnitsAttr, SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE))
|
| {
|
| @@ -35,6 +35,8 @@ SVGClipPathElement::SVGClipPathElement(Document& document)
|
| addToPropertyMap(m_clipPathUnits);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGClipPathElement)
|
| +
|
| bool SVGClipPathElement::isSupportedAttribute(const QualifiedName& attrName)
|
| {
|
| DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
|
|
|