Index: Source/core/svg/SVGViewElement.cpp |
diff --git a/Source/core/svg/SVGViewElement.cpp b/Source/core/svg/SVGViewElement.cpp |
index cc4750f1a559ea871370d2246a1070da3a11f6cb..1f29d8cd8ea49c8674321af33dfa8c1c88654a82 100644 |
--- a/Source/core/svg/SVGViewElement.cpp |
+++ b/Source/core/svg/SVGViewElement.cpp |
@@ -38,11 +38,11 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGViewElement) |
REGISTER_LOCAL_ANIMATED_PROPERTY(externalResourcesRequired) |
REGISTER_LOCAL_ANIMATED_PROPERTY(viewBox) |
REGISTER_LOCAL_ANIMATED_PROPERTY(preserveAspectRatio) |
- REGISTER_PARENT_ANIMATED_PROPERTIES(SVGStyledElement) |
+ REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) |
END_REGISTER_ANIMATED_PROPERTIES |
inline SVGViewElement::SVGViewElement(const QualifiedName& tagName, Document* document) |
- : SVGStyledElement(tagName, document) |
+ : SVGElement(tagName, document) |
, m_zoomAndPan(SVGZoomAndPanMagnify) |
, m_viewTarget(SVGNames::viewTargetAttr) |
{ |
@@ -71,7 +71,7 @@ bool SVGViewElement::isSupportedAttribute(const QualifiedName& attrName) |
void SVGViewElement::parseAttribute(const QualifiedName& name, const AtomicString& value) |
{ |
if (!isSupportedAttribute(name)) { |
- SVGStyledElement::parseAttribute(name, value); |
+ SVGElement::parseAttribute(name, value); |
return; |
} |