Index: Source/core/svg/SVGTextPathElement.cpp |
diff --git a/Source/core/svg/SVGTextPathElement.cpp b/Source/core/svg/SVGTextPathElement.cpp |
index fef4794ee2555c04f2bca115269bdc5eac4f7678..45b2f60f8d99291d08f9e01b8ef3fb69f1f2d768 100644 |
--- a/Source/core/svg/SVGTextPathElement.cpp |
+++ b/Source/core/svg/SVGTextPathElement.cpp |
@@ -129,16 +129,6 @@ RenderObject* SVGTextPathElement::createRenderer(RenderStyle*) |
return new RenderSVGTextPath(this); |
} |
-bool SVGTextPathElement::childShouldCreateRenderer(const Node& child) const |
-{ |
- if (child.isTextNode() |
- || child.hasTagName(SVGNames::aTag) |
- || child.hasTagName(SVGNames::tspanTag)) |
- return true; |
- |
- return false; |
-} |
- |
bool SVGTextPathElement::rendererIsNeeded(const RenderStyle& style) |
{ |
if (parentNode() |