| Index: Source/core/animation/css/CSSAnimations.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimations.cpp b/Source/core/animation/css/CSSAnimations.cpp
|
| index a22873c10c015af6ae88658be88dd90d2e9a4492..6da98317900972a5c96556a83a1be4be1b707f59 100644
|
| --- a/Source/core/animation/css/CSSAnimations.cpp
|
| +++ b/Source/core/animation/css/CSSAnimations.cpp
|
| @@ -100,9 +100,7 @@ static PassRefPtrWillBeRawPtr<StringKeyframeEffectModel> createKeyframeEffectMod
|
| timingFunction = CSSTimingData::initialTimingFunction();
|
| }
|
| keyframe->setEasing(timingFunction.release());
|
| - } else if (CSSPropertyMetadata::isInterpolableProperty(property)) {
|
| - // TODO(alancutter): We should allow animation of non-interpolable properties as well.
|
| - // https://lists.w3.org/Archives/Public/www-style/2012Nov/0261.html
|
| + } else if (CSSAnimations::isAnimatableProperty(property)) {
|
| keyframe->setPropertyValue(property, properties.propertyAt(j).value());
|
| }
|
| }
|
|
|