Index: Source/core/svg/SVGClipPathElement.cpp |
diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp |
index 333cedf02f9269231a925117c454a9ebf0f9966f..86cd2633bf3bbfe9c0cd4834f370fbc636bce980 100644 |
--- a/Source/core/svg/SVGClipPathElement.cpp |
+++ b/Source/core/svg/SVGClipPathElement.cpp |
@@ -36,12 +36,11 @@ DEFINE_ANIMATED_BOOLEAN(SVGClipPathElement, SVGNames::externalResourcesRequiredA |
BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGClipPathElement) |
REGISTER_LOCAL_ANIMATED_PROPERTY(clipPathUnits) |
REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired) |
- REGISTER_PARENT_ANIMATED_PROPERTIES(SVGStyledTransformableElement) |
- REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests) |
+ REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement) |
END_REGISTER_ANIMATED_PROPERTIES |
inline SVGClipPathElement::SVGClipPathElement(const QualifiedName& tagName, Document* document) |
- : SVGStyledTransformableElement(tagName, document) |
+ : SVGGraphicsElement(tagName, document) |
, m_clipPathUnits(SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE) |
{ |
ASSERT(hasTagName(SVGNames::clipPathTag)); |
@@ -69,7 +68,7 @@ bool SVGClipPathElement::isSupportedAttribute(const QualifiedName& attrName) |
void SVGClipPathElement::parseAttribute(const QualifiedName& name, const AtomicString& value) |
{ |
if (!isSupportedAttribute(name)) { |
- SVGStyledTransformableElement::parseAttribute(name, value); |
+ SVGGraphicsElement::parseAttribute(name, value); |
return; |
} |
@@ -93,7 +92,7 @@ void SVGClipPathElement::parseAttribute(const QualifiedName& name, const AtomicS |
void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName) |
{ |
if (!isSupportedAttribute(attrName)) { |
- SVGStyledTransformableElement::svgAttributeChanged(attrName); |
+ SVGGraphicsElement::svgAttributeChanged(attrName); |
return; |
} |
@@ -105,7 +104,7 @@ void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName) |
void SVGClipPathElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta) |
{ |
- SVGStyledTransformableElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta); |
+ SVGGraphicsElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta); |
if (changedByParser) |
return; |