summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGAElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGAElement.cpp')
-rw-r--r--WebCore/svg/SVGAElement.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/WebCore/svg/SVGAElement.cpp b/WebCore/svg/SVGAElement.cpp
index 8e0e56e..811d5f7 100644
--- a/WebCore/svg/SVGAElement.cpp
+++ b/WebCore/svg/SVGAElement.cpp
@@ -108,6 +108,7 @@ void SVGAElement::synchronizeProperty(const QualifiedName& attrName)
synchronizeSVGTarget();
synchronizeHref();
synchronizeExternalResourcesRequired();
+ SVGTests::synchronizeProperties(this, attrName);
return;
}
@@ -117,6 +118,8 @@ void SVGAElement::synchronizeProperty(const QualifiedName& attrName)
synchronizeHref();
else if (SVGExternalResourcesRequired::isKnownAttribute(attrName))
synchronizeExternalResourcesRequired();
+ else if (SVGTests::isKnownAttribute(attrName))
+ SVGTests::synchronizeProperties(this, attrName);
}
RenderObject* SVGAElement::createRenderer(RenderArena* arena, RenderStyle*)