| Index: Source/core/svg/SVGAnimatedLengthList.cpp | 
| diff --git a/Source/core/svg/SVGAnimatedLengthList.cpp b/Source/core/svg/SVGAnimatedLengthList.cpp | 
| index 1e0533e960989e6c3bc93f1442eb118853ab5037..513114bd7a3cbb3f6e49f77fd88e12b521b98137 100644 | 
| --- a/Source/core/svg/SVGAnimatedLengthList.cpp | 
| +++ b/Source/core/svg/SVGAnimatedLengthList.cpp | 
| @@ -78,7 +78,7 @@ void SVGAnimatedLengthListAnimator::addAnimatedTypes(SVGAnimatedType* from, SVGA | 
|  | 
| SVGLengthContext lengthContext(m_contextElement); | 
| for (unsigned i = 0; i < fromLengthListSize; ++i) | 
| -        toLengthList[i].setValue(toLengthList[i].value(lengthContext) + fromLengthList[i].value(lengthContext), lengthContext, ASSERT_NO_EXCEPTION_STATE); | 
| +        toLengthList[i].setValue(toLengthList[i].value(lengthContext) + fromLengthList[i].value(lengthContext), lengthContext, ASSERT_NO_EXCEPTION); | 
| } | 
|  | 
| static SVGLengthList parseLengthListFromString(SVGAnimationElement* animationElement, const String& string) | 
| @@ -122,7 +122,7 @@ void SVGAnimatedLengthListAnimator::calculateAnimatedValue(float percentage, uns | 
| float effectiveToAtEnd = i < toAtEndOfDurationListSize ? toAtEndOfDurationLengthList[i].value(lengthContext) : 0; | 
|  | 
| m_animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom, toLengthList[i].value(lengthContext), effectiveToAtEnd, animatedNumber); | 
| -        animatedLengthList[i].setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPTION_STATE); | 
| +        animatedLengthList[i].setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPTION); | 
| } | 
| } | 
|  | 
|  |