Index: Source/core/svg/SVGTitleElement.cpp |
diff --git a/Source/core/svg/SVGTitleElement.cpp b/Source/core/svg/SVGTitleElement.cpp |
index 7d7333a4dc3f65a8f1f02df296a7c3184b66d73b..e9e8232bf97288ab71fb8550d5cf9df375eb2c80 100644 |
--- a/Source/core/svg/SVGTitleElement.cpp |
+++ b/Source/core/svg/SVGTitleElement.cpp |
@@ -27,7 +27,7 @@ |
namespace WebCore { |
inline SVGTitleElement::SVGTitleElement(const QualifiedName& tagName, Document* document) |
- : SVGStyledElement(tagName, document) |
+ : SVGElement(tagName, document) |
{ |
ASSERT(hasTagName(SVGNames::titleTag)); |
ScriptWrappable::init(this); |
@@ -40,7 +40,7 @@ PassRefPtr<SVGTitleElement> SVGTitleElement::create(const QualifiedName& tagName |
Node::InsertionNotificationRequest SVGTitleElement::insertedInto(ContainerNode* rootParent) |
{ |
- SVGStyledElement::insertedInto(rootParent); |
+ SVGElement::insertedInto(rootParent); |
if (!rootParent->inDocument()) |
return InsertionDone; |
if (firstChild()) |