Chromium Code Reviews| 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; |
|
alancutter (OOO until 2018)
2016/05/23 00:55:10
Glad to see this quirk in the animation engine go
Noel Gordon
2016/05/23 02:12:07
Ack. New patch uploaded.
|
| } else if (CSSAnimations::isAnimatableProperty(property)) { |
| keyframe->setCSSPropertyValue(property, properties.propertyAt(j).value()); |
| } |