| 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 d8ab12de22c78c29c6a05a5c7bf7967bd5e90f54..3b705a15a1c3e988795b10bd7e79ccdae54dae92 100644
 | 
| --- a/third_party/WebKit/Source/core/svg/SVGElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp
 | 
| @@ -31,7 +31,7 @@
 | 
|  #include "core/animation/DocumentAnimations.h"
 | 
|  #include "core/animation/ElementAnimations.h"
 | 
|  #include "core/animation/InterpolationEnvironment.h"
 | 
| -#include "core/animation/InvalidatableInterpolation.h"
 | 
| +#include "core/animation/StackableInterpolation.h"
 | 
|  #include "core/css/CSSCursorImageValue.h"
 | 
|  #include "core/css/resolver/StyleResolver.h"
 | 
|  #include "core/dom/Document.h"
 | 
| @@ -232,7 +232,7 @@ void SVGElement::applyActiveWebAnimations()
 | 
|      for (auto& entry : activeInterpolationsMap) {
 | 
|          const QualifiedName& attribute = entry.key.svgAttribute();
 | 
|          InterpolationEnvironment environment(*this, propertyFromAttribute(attribute)->baseValueBase());
 | 
| -        InvalidatableInterpolation::applyStack(entry.value, environment);
 | 
| +        StackableInterpolation::applyStack(entry.value, environment);
 | 
|      }
 | 
|      svgRareData()->setWebAnimatedAttributesDirty(false);
 | 
|  }
 | 
| 
 |