diff options
Diffstat (limited to 'WebCore/svg/SVGTRefElement.cpp')
-rw-r--r-- | WebCore/svg/SVGTRefElement.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/WebCore/svg/SVGTRefElement.cpp b/WebCore/svg/SVGTRefElement.cpp index 4faa633..4c593ca 100644 --- a/WebCore/svg/SVGTRefElement.cpp +++ b/WebCore/svg/SVGTRefElement.cpp @@ -24,6 +24,7 @@ #include "SVGTRefElement.h" #include "RenderSVGInline.h" +#include "RenderSVGResource.h" #include "SVGDocument.h" #include "SVGNames.h" #include "Text.h" @@ -69,7 +70,7 @@ void SVGTRefElement::svgAttributeChanged(const QualifiedName& attrName) return; if (SVGURIReference::isKnownAttribute(attrName)) - renderer()->setNeedsLayout(true); + RenderSVGResource::markForLayoutAndParentResourceInvalidation(renderer()); } void SVGTRefElement::synchronizeProperty(const QualifiedName& attrName) |