| Index: Source/core/animation/DocumentAnimations.cpp
|
| diff --git a/Source/core/animation/DocumentAnimations.cpp b/Source/core/animation/DocumentAnimations.cpp
|
| index 69085bfd9847f34791ec855a4cd5bc907668a160..34ea5ca4546c50ae264bc49ea119d8172c9700d3 100644
|
| --- a/Source/core/animation/DocumentAnimations.cpp
|
| +++ b/Source/core/animation/DocumentAnimations.cpp
|
| @@ -71,7 +71,7 @@ void dispatchAnimationEventsAsync(Document& document)
|
|
|
| void DocumentAnimations::serviceOnAnimationFrame(Document& document, double monotonicAnimationStartTime)
|
| {
|
| - if (!RuntimeEnabledFeatures::webAnimationsEnabled())
|
| + if (!RuntimeEnabledFeatures::webAnimationsCSSEnabled())
|
| return;
|
|
|
| updateAnimationTiming(document, monotonicAnimationStartTime);
|
| @@ -80,7 +80,7 @@ void DocumentAnimations::serviceOnAnimationFrame(Document& document, double mono
|
|
|
| void DocumentAnimations::serviceBeforeGetComputedStyle(Node& node, CSSPropertyID property)
|
| {
|
| - if (!RuntimeEnabledFeatures::webAnimationsEnabled())
|
| + if (!RuntimeEnabledFeatures::webAnimationsCSSEnabled())
|
| return;
|
|
|
| if (node.isElementNode()) {
|
| @@ -95,7 +95,7 @@ void DocumentAnimations::serviceBeforeGetComputedStyle(Node& node, CSSPropertyID
|
|
|
| void DocumentAnimations::serviceAfterStyleRecalc(Document& document)
|
| {
|
| - if (!RuntimeEnabledFeatures::webAnimationsEnabled())
|
| + if (!RuntimeEnabledFeatures::webAnimationsCSSEnabled())
|
| return;
|
|
|
| if (document.cssPendingAnimations().startPendingAnimations() && document.view())
|
|
|