| Index: third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
|
| index c59df1aeabffd2924d0f7c020c136613d3fdd1a1..66231b431f886aeb28c507653629770b04321e13 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp
|
| @@ -514,12 +514,12 @@ SMILTime SMILTimeContainer::updateAnimations(double elapsed, bool seekToTime) {
|
| if (timedElement->isConnected() && timedElement->isSVGDiscardElement()) {
|
| SVGElement* targetElement = timedElement->targetElement();
|
| if (targetElement && targetElement->isConnected()) {
|
| - targetElement->remove(IGNORE_EXCEPTION);
|
| + targetElement->remove(IGNORE_EXCEPTION_FOR_TESTING);
|
| DCHECK(!targetElement->isConnected());
|
| }
|
|
|
| if (timedElement->isConnected()) {
|
| - timedElement->remove(IGNORE_EXCEPTION);
|
| + timedElement->remove(IGNORE_EXCEPTION_FOR_TESTING);
|
| DCHECK(!timedElement->isConnected());
|
| }
|
| }
|
|
|