Index: Source/core/svg/SVGSVGElement.cpp |
diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp |
index ec26ae2dde89ad2848167247eba4a3f99256f9c0..ffaaef5f0b852f6e6070bc4f3894f401abdce443 100644 |
--- a/Source/core/svg/SVGSVGElement.cpp |
+++ b/Source/core/svg/SVGSVGElement.cpp |
@@ -479,9 +479,9 @@ bool SVGSVGElement::rendererIsNeeded(const NodeRenderingContext& context) |
RenderObject* SVGSVGElement::createRenderer(RenderStyle*) |
{ |
if (isOutermostSVGSVGElement()) |
- return new (document()->renderArena()) RenderSVGRoot(this); |
+ return new RenderSVGRoot(this); |
- return new (document()->renderArena()) RenderSVGViewportContainer(this); |
+ return new RenderSVGViewportContainer(this); |
} |
Node::InsertionNotificationRequest SVGSVGElement::insertedInto(ContainerNode* rootParent) |