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

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

Issue 98663004: Add support for unprefixed CSS Transforms (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 ec48cb6b87b5545e084e3003325fdbce29eff403..e8095acfbdde12e098bb1889d0dbf1238cd4ea37 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/webexposed/css-properties-as-js-properties-expected.txt ('k') | Source/core/animation/AnimatableLengthPoint3D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698