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

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

Issue 2065593002: Unprefix the CSS 'filter' property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove disabler. Try different DCHECK expressions. Created 4 years, 6 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 39fd7c6c6f21f4da754bb71f421b609d4e0da7dc..58abde39e0139fbef8d75db520e6ac09c5d213d4 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