| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 3a597c63e806d1ca0ba4cae7e65f538d08c62ba3..4abec78583a705fc630c845c3df27208073dbd65 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -1580,7 +1580,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.
|
|
|