| Index: third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| index 39e26c592a7068655167e5099b4daa67b73c9046..ea41bb227e13a36b5fdcc38474f33665b1e7e1ca 100644
|
| --- a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
|
| @@ -5,7 +5,6 @@
|
| #include "core/animation/StringKeyframe.h"
|
|
|
| #include "core/StylePropertyShorthand.h"
|
| -#include "core/XLinkNames.h"
|
| #include "core/animation/CSSColorInterpolationType.h"
|
| #include "core/animation/CSSFontWeightInterpolationType.h"
|
| #include "core/animation/CSSImageInterpolationType.h"
|
| @@ -384,6 +383,7 @@ const InterpolationTypes* applicableTypesForProperty(PropertyHandle property)
|
| || attribute == SVGNames::edgeModeAttr
|
| || attribute == SVGNames::filterUnitsAttr
|
| || attribute == SVGNames::gradientUnitsAttr
|
| + || attribute == SVGNames::hrefAttr
|
| || attribute == SVGNames::inAttr
|
| || attribute == SVGNames::in2Attr
|
| || attribute == SVGNames::lengthAdjustAttr
|
| @@ -405,8 +405,7 @@ const InterpolationTypes* applicableTypesForProperty(PropertyHandle property)
|
| || attribute == SVGNames::targetAttr
|
| || attribute == SVGNames::typeAttr
|
| || attribute == SVGNames::xChannelSelectorAttr
|
| - || attribute == SVGNames::yChannelSelectorAttr
|
| - || attribute == XLinkNames::hrefAttr) {
|
| + || attribute == SVGNames::yChannelSelectorAttr) {
|
| // Use default SVGValueInterpolationType.
|
| } else {
|
| fallbackToLegacy = true;
|
|
|