diff options
Diffstat (limited to 'Source/WebCore/mathml/MathMLInlineContainerElement.cpp')
-rw-r--r-- | Source/WebCore/mathml/MathMLInlineContainerElement.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebCore/mathml/MathMLInlineContainerElement.cpp b/Source/WebCore/mathml/MathMLInlineContainerElement.cpp index eb579d272..e71b9ea85 100644 --- a/Source/WebCore/mathml/MathMLInlineContainerElement.cpp +++ b/Source/WebCore/mathml/MathMLInlineContainerElement.cpp @@ -78,6 +78,8 @@ RenderObject* MathMLInlineContainerElement::createRenderer(RenderArena* arena, R return new (arena) RenderMathMLRoot(this); if (hasLocalName(mfencedTag)) return new (arena) RenderMathMLFenced(this); + if (hasLocalName(mtableTag)) + return new (arena) RenderMathMLTable(this); return new (arena) RenderMathMLBlock(this); } |