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

Unified Diff: Source/core/animation/ActiveAnimations.cpp

Issue 212543003: CSS Transforms: Implement transform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 9 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: Source/core/animation/ActiveAnimations.cpp
diff --git a/Source/core/animation/ActiveAnimations.cpp b/Source/core/animation/ActiveAnimations.cpp
index 938e0dff9697bc8e9ae43b5d3c1a1a8ae1746e7c..813b027926a3c89749f45b1b0dd05d9d466c2854 100644
--- a/Source/core/animation/ActiveAnimations.cpp
+++ b/Source/core/animation/ActiveAnimations.cpp
@@ -43,7 +43,7 @@ bool shouldCompositeForActiveAnimations(const RenderObject& renderer)
const Element* element = toElement(renderer.node());
if (const ActiveAnimations* activeAnimations = element->activeAnimations()) {
if (activeAnimations->hasActiveAnimations(CSSPropertyOpacity)
- || activeAnimations->hasActiveAnimations(CSSPropertyWebkitTransform)
+ || activeAnimations->hasActiveAnimations(CSSPropertyTransform)
|| activeAnimations->hasActiveAnimations(CSSPropertyWebkitFilter))
return true;
}
« no previous file with comments | « LayoutTests/transitions/unprefixed-transform-expected.txt ('k') | Source/core/animation/CompositorAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698