Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp

Issue 1987943002: [wip] unprefix filter Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
}

Powered by Google App Engine
This is Rietveld 408576698