| Index: third_party/WebKit/Source/core/animation/ElementAnimations.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/ElementAnimations.cpp b/third_party/WebKit/Source/core/animation/ElementAnimations.cpp
|
| index 894dfdec8bcef6ba650de60dd0df2d8ab5238ab1..53ba90fd86e7f0fe951acba729db18d4332c708a 100644
|
| --- a/third_party/WebKit/Source/core/animation/ElementAnimations.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/ElementAnimations.cpp
|
| @@ -61,20 +61,23 @@ void ElementAnimations::updateAnimationFlags(ComputedStyle& style) {
|
|
|
| if (style.hasCurrentOpacityAnimation()) {
|
| style.setIsRunningOpacityAnimationOnCompositor(
|
| - m_effectStack.hasActiveAnimationsOnCompositor(CSSPropertyOpacity));
|
| + m_effectStack.hasActiveAnimationsOnCompositor(
|
| + PropertyHandle(CSSPropertyOpacity)));
|
| }
|
| if (style.hasCurrentTransformAnimation()) {
|
| style.setIsRunningTransformAnimationOnCompositor(
|
| - m_effectStack.hasActiveAnimationsOnCompositor(CSSPropertyTransform));
|
| + m_effectStack.hasActiveAnimationsOnCompositor(
|
| + PropertyHandle(CSSPropertyTransform)));
|
| }
|
| if (style.hasCurrentFilterAnimation()) {
|
| style.setIsRunningFilterAnimationOnCompositor(
|
| - m_effectStack.hasActiveAnimationsOnCompositor(CSSPropertyFilter));
|
| + m_effectStack.hasActiveAnimationsOnCompositor(
|
| + PropertyHandle(CSSPropertyFilter)));
|
| }
|
| if (style.hasCurrentBackdropFilterAnimation()) {
|
| style.setIsRunningBackdropFilterAnimationOnCompositor(
|
| m_effectStack.hasActiveAnimationsOnCompositor(
|
| - CSSPropertyBackdropFilter));
|
| + PropertyHandle(CSSPropertyBackdropFilter)));
|
| }
|
| }
|
|
|
|
|