Chromium Code Reviews| 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) |
|
eseidel
2014/03/20 16:40:57
I see Transform, but not WebKitTransform here, is
dstockwell
2014/03/24 21:40:56
Yes, in the animation system we only want to anima
|
| || activeAnimations->hasActiveAnimations(CSSPropertyWebkitFilter)) |
| return true; |
| } |