| Index: Source/core/rendering/svg/RenderSVGTextPath.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGTextPath.cpp b/Source/core/rendering/svg/RenderSVGTextPath.cpp
|
| index 0770a4c3f2f2d32059ee4b3ccdf8380451ecaf8b..6d9c421db0f31142da75842ce4dd39cf528632f9 100644
|
| --- a/Source/core/rendering/svg/RenderSVGTextPath.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGTextPath.cpp
|
| @@ -38,13 +38,6 @@ bool RenderSVGTextPath::isChildAllowed(RenderObject* child, RenderStyle*) const
|
| if (child->isText())
|
| return SVGRenderSupport::isRenderableTextNode(child);
|
|
|
| -#if ENABLE(SVG_FONTS)
|
| - // 'altGlyph' is supported by the content model for 'textPath', but...
|
| - ASSERT(child->node());
|
| - if (isSVGAltGlyphElement(*child->node()))
|
| - return false;
|
| -#endif
|
| -
|
| return child->isSVGInline() && !child->isSVGTextPath();
|
| }
|
|
|
|
|