Index: Source/core/svg/SVGUseElement.cpp |
diff --git a/Source/core/svg/SVGUseElement.cpp b/Source/core/svg/SVGUseElement.cpp |
index 19cb65ffe128c101d392c3a00b5e5ef953d044fe..7c21dd7034e3bbb573439416017993de791bba68 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; |