Index: third_party/WebKit/Source/core/svg/SVGElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGElement.cpp |
index 22a3cb86a7e697ef6c3640a3219459e67473f8b6..76d19fc8cf15a1decf5db361ebfb00bf77bd6544 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp |
@@ -1045,7 +1045,6 @@ bool SVGElement::isAnimatableAttribute(const QualifiedName& name) const |
if (animatableAttributes.isEmpty()) { |
const QualifiedName* const animatableAttrs[] = { |
- &XLinkNames::hrefAttr, |
&SVGNames::amplitudeAttr, |
&SVGNames::azimuthAttr, |
&SVGNames::baseFrequencyAttr, |
@@ -1066,6 +1065,7 @@ bool SVGElement::isAnimatableAttribute(const QualifiedName& name) const |
&SVGNames::gradientTransformAttr, |
&SVGNames::gradientUnitsAttr, |
&SVGNames::heightAttr, |
+ &SVGNames::hrefAttr, |
&SVGNames::in2Attr, |
&SVGNames::inAttr, |
&SVGNames::interceptAttr, |
@@ -1178,7 +1178,7 @@ void SVGElement::rebuildAllIncomingReferences() |
for (SVGElement* sourceElement : incomingReferencesSnapshot) { |
// Before rebuilding |sourceElement| ensure it was not removed from under us. |
if (incomingReferences.contains(sourceElement)) |
- sourceElement->svgAttributeChanged(XLinkNames::hrefAttr); |
+ sourceElement->svgAttributeChanged(SVGNames::hrefAttr); |
} |
} |