Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(720)

Unified Diff: Source/core/page/animation/AnimationBase.cpp

Issue 24921002: Make compositingState explicit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed first round of reviewer comments Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/page/animation/AnimationBase.cpp
diff --git a/Source/core/page/animation/AnimationBase.cpp b/Source/core/page/animation/AnimationBase.cpp
index 40b7483e7a68984ee4f74cbe7466fefbcea145de..577170a049a00b3ec0416028d80a59fce4a6984f 100644
--- a/Source/core/page/animation/AnimationBase.cpp
+++ b/Source/core/page/animation/AnimationBase.cpp
@@ -556,7 +556,7 @@ void AnimationBase::freezeAtTime(double t)
m_pauseTime = m_startTime + t - m_animation->delay();
// It is possible that m_isAccelerated is true and m_object->isComposited() is false, because of style change.
- if (m_object && m_object->isComposited() && isAccelerated())
+ if (m_object && m_object->compositingState() == PaintsIntoOwnBacking && isAccelerated())
toRenderBoxModelObject(m_object)->suspendAnimations(m_pauseTime);
}

Powered by Google App Engine
This is Rietveld 408576698