Index: Source/core/svg/SVGUseElement.cpp |
diff --git a/Source/core/svg/SVGUseElement.cpp b/Source/core/svg/SVGUseElement.cpp |
index 538a8e85d5f2da17ffcc03f59c36dfce180f2e00..2e3ade6b4bc6e92196e7e4831861e8329d4139d3 100644 |
--- a/Source/core/svg/SVGUseElement.cpp |
+++ b/Source/core/svg/SVGUseElement.cpp |
@@ -223,7 +223,7 @@ void SVGUseElement::svgAttributeChanged(const QualifiedName& attrName) |
StyleChangeReasonForTracing::fromAttribute(attrName)); |
} |
- LayoutObject* renderer = this->renderer(); |
+ LayoutObject* renderer = this->layoutObject(); |
if (attrName == SVGNames::xAttr |
|| attrName == SVGNames::yAttr |
|| attrName == SVGNames::widthAttr |
@@ -487,7 +487,7 @@ LayoutObject* SVGUseElement::rendererClipChild() const |
{ |
if (Node* n = closedShadowRoot()->firstChild()) { |
if (n->isSVGElement() && isDirectReference(toSVGElement(*n))) |
- return n->renderer(); |
+ return n->layoutObject(); |
} |
return 0; |