summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGGElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGGElement.cpp')
-rw-r--r--WebCore/svg/SVGGElement.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/WebCore/svg/SVGGElement.cpp b/WebCore/svg/SVGGElement.cpp
index b6b4a70..c58eefa 100644
--- a/WebCore/svg/SVGGElement.cpp
+++ b/WebCore/svg/SVGGElement.cpp
@@ -77,8 +77,16 @@ void SVGGElement::synchronizeProperty(const QualifiedName& attrName)
{
SVGStyledTransformableElement::synchronizeProperty(attrName);
- if (attrName == anyQName() || SVGExternalResourcesRequired::isKnownAttribute(attrName))
+ if (attrName == anyQName()) {
synchronizeExternalResourcesRequired();
+ SVGTests::synchronizeProperties(this, attrName);
+ return;
+ }
+
+ if (SVGExternalResourcesRequired::isKnownAttribute(attrName))
+ synchronizeExternalResourcesRequired();
+ else if (SVGTests::isKnownAttribute(attrName))
+ SVGTests::synchronizeProperties(this, attrName);
}
RenderObject* SVGGElement::createRenderer(RenderArena* arena, RenderStyle* style)