| Index: Source/core/rendering/svg/RenderSVGTextPath.cpp | 
| diff --git a/Source/core/rendering/svg/RenderSVGTextPath.cpp b/Source/core/rendering/svg/RenderSVGTextPath.cpp | 
| index c921c2f84ce59315bd06779f414e266b78ac3454..1f9c54656ef880f3c15d048e55e3f3f158b3633b 100644 | 
| --- a/Source/core/rendering/svg/RenderSVGTextPath.cpp | 
| +++ b/Source/core/rendering/svg/RenderSVGTextPath.cpp | 
| @@ -37,7 +37,7 @@ RenderSVGTextPath::RenderSVGTextPath(Element* element) | 
| bool RenderSVGTextPath::isChildAllowed(RenderObject* child, RenderStyle*) const | 
| { | 
| if (child->isText()) | 
| -        return !SVGRenderSupport::isEmptySVGInlineText(child); | 
| +        return SVGRenderSupport::isRenderableTextNode(child); | 
|  | 
| #if ENABLE(SVG_FONTS) | 
| // 'altGlyph' is supported by the content model for 'textPath', but... | 
|  |