Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Unified Diff: third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.cpp

Issue 2615953003: Rename IGNORE_EXCEPTION to IGNORE_EXCEPTION_FOR_TESTING (Closed)
Patch Set: temp Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
}
}

Powered by Google App Engine
This is Rietveld 408576698