| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index cc78b6b2acb42d75bbfed68089002167325e4387..870d2062507107426e08fa8bea1b6d40247ef83a 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -1581,7 +1581,7 @@ PassRefPtr<RenderStyle> CSSComputedStyleDeclaration::computeRenderStyle(CSSPrope
|
| Node* styledNode = this->styledNode();
|
| ASSERT(styledNode);
|
| RenderObject* renderer = styledNode->renderer();
|
| - if (renderer && renderer->isComposited() && AnimationController::supportsAcceleratedAnimationOfProperty(propertyID) && !RuntimeEnabledFeatures::webAnimationsCSSEnabled()) {
|
| + if (renderer && renderer->isComposited() && !RuntimeEnabledFeatures::webAnimationsCSSEnabled() && AnimationController::supportsAcceleratedAnimationOfProperty(propertyID)) {
|
| AnimationUpdateBlock animationUpdateBlock(renderer->animation());
|
| if (m_pseudoElementSpecifier && !styledNode->isPseudoElement()) {
|
| // FIXME: This cached pseudo style will only exist if the animation has been run at least once.
|
|
|