| Index: Source/core/svg/SVGUseElement.cpp
|
| diff --git a/Source/core/svg/SVGUseElement.cpp b/Source/core/svg/SVGUseElement.cpp
|
| index 4fdcc9f7ff1c8b0928366d3a70940ed2cf2e80a4..c0d9bd8b32aad05c62d1fa67a9f2be1102808138 100644
|
| --- a/Source/core/svg/SVGUseElement.cpp
|
| +++ b/Source/core/svg/SVGUseElement.cpp
|
| @@ -191,7 +191,7 @@ void SVGUseElement::svgAttributeChanged(const QualifiedName& attrName)
|
|
|
| SVGElement::InvalidationGuard invalidationGuard(this);
|
|
|
| - RenderObject* renderer = this->renderer();
|
| + LayoutObject* renderer = this->renderer();
|
| if (attrName == SVGNames::xAttr
|
| || attrName == SVGNames::yAttr
|
| || attrName == SVGNames::widthAttr
|
| @@ -412,7 +412,7 @@ void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target)
|
| updateRelativeLengthsInformation();
|
| }
|
|
|
| -RenderObject* SVGUseElement::createRenderer(RenderStyle*)
|
| +LayoutObject* SVGUseElement::createRenderer(RenderStyle*)
|
| {
|
| return new RenderSVGTransformableContainer(this);
|
| }
|
| @@ -451,7 +451,7 @@ void SVGUseElement::toClipPath(Path& path)
|
| }
|
| }
|
|
|
| -RenderObject* SVGUseElement::rendererClipChild() const
|
| +LayoutObject* SVGUseElement::rendererClipChild() const
|
| {
|
| if (Node* n = userAgentShadowRoot()->firstChild()) {
|
| if (n->isSVGElement() && isDirectReference(toSVGElement(*n)))
|
|
|