Index: third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp |
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp |
index 24f99b789118fe20f29c32de82e2a0cc5ea669ff..a136672b0c93ca109666b61de4aef1b16584af53 100644 |
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp |
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp |
@@ -101,11 +101,6 @@ static StringKeyframeEffectModel* createKeyframeEffectModel(StyleResolver* resol |
timingFunction = CSSTimingData::initialTimingFunction(); |
} |
keyframe->setEasing(timingFunction.release()); |
- } else if (property == CSSPropertyFilter) { |
- // TODO(alancutter): We will not support animating filter until -webkit-filter is an alias for it. |
- // This is to prevent animations on both -webkit-filter and filter from being run on the main thread when |
- // they would otherwise run on the compositor. |
- continue; |
} else if (CSSAnimations::isAnimatableProperty(property)) { |
keyframe->setCSSPropertyValue(property, properties.propertyAt(j).value()); |
} |