| Index: Source/core/svg/SVGGlyphElement.cpp
|
| diff --git a/Source/core/svg/SVGGlyphElement.cpp b/Source/core/svg/SVGGlyphElement.cpp
|
| index 4a09d87855238d64092d5d66cb782d8ffa978a3b..31bcc2deb84a8b71ad8726bd0e174f523f5554f0 100644
|
| --- a/Source/core/svg/SVGGlyphElement.cpp
|
| +++ b/Source/core/svg/SVGGlyphElement.cpp
|
| @@ -32,7 +32,7 @@
|
| namespace WebCore {
|
|
|
| inline SVGGlyphElement::SVGGlyphElement(const QualifiedName& tagName, Document* document)
|
| - : SVGStyledElement(tagName, document)
|
| + : SVGElement(tagName, document)
|
| {
|
| ASSERT(hasTagName(SVGNames::glyphTag));
|
| ScriptWrappable::init(this);
|
| @@ -55,20 +55,20 @@ void SVGGlyphElement::parseAttribute(const QualifiedName& name, const AtomicStri
|
| if (name == SVGNames::dAttr)
|
| invalidateGlyphCache();
|
| else
|
| - SVGStyledElement::parseAttribute(name, value);
|
| + SVGElement::parseAttribute(name, value);
|
| }
|
|
|
| Node::InsertionNotificationRequest SVGGlyphElement::insertedInto(ContainerNode* rootParent)
|
| {
|
| invalidateGlyphCache();
|
| - return SVGStyledElement::insertedInto(rootParent);
|
| + return SVGElement::insertedInto(rootParent);
|
| }
|
|
|
| void SVGGlyphElement::removedFrom(ContainerNode* rootParent)
|
| {
|
| if (rootParent->inDocument())
|
| invalidateGlyphCache();
|
| - SVGStyledElement::removedFrom(rootParent);
|
| + SVGElement::removedFrom(rootParent);
|
| }
|
|
|
| static inline SVGGlyph::ArabicForm parseArabicForm(const AtomicString& value)
|
|
|