Index: Source/core/svg/SVGGlyphRefElement.cpp |
diff --git a/Source/core/svg/SVGGlyphRefElement.cpp b/Source/core/svg/SVGGlyphRefElement.cpp |
index be8d9c339aae643c8bbcf1ed564b4f7a3a03231a..4594e318d29cad4fd98e5d3f8cc8da5bd1da2c00 100644 |
--- a/Source/core/svg/SVGGlyphRefElement.cpp |
+++ b/Source/core/svg/SVGGlyphRefElement.cpp |
@@ -34,11 +34,11 @@ DEFINE_ANIMATED_STRING(SVGGlyphRefElement, XLinkNames::hrefAttr, Href, href) |
BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGGlyphRefElement) |
REGISTER_LOCAL_ANIMATED_PROPERTY(href) |
- REGISTER_PARENT_ANIMATED_PROPERTIES(SVGStyledElement) |
+ REGISTER_PARENT_ANIMATED_PROPERTIES(SVGElement) |
END_REGISTER_ANIMATED_PROPERTIES |
inline SVGGlyphRefElement::SVGGlyphRefElement(const QualifiedName& tagName, Document* document) |
- : SVGStyledElement(tagName, document) |
+ : SVGElement(tagName, document) |
, m_x(0) |
, m_y(0) |
, m_dx(0) |
@@ -82,7 +82,7 @@ void SVGGlyphRefElement::parseAttributeInternal(const QualifiedName& name, const |
} else { |
if (SVGURIReference::parseAttribute(name, value)) |
return; |
- SVGStyledElement::parseAttribute(name, value); |
+ SVGElement::parseAttribute(name, value); |
} |
} |