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

Unified Diff: Source/core/animation/AnimationClock.h

Issue 46043014: Web Animations CSS: Unfreeze AnimationClock if sampling timelines does not trigger style recalc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Really fix unit tests 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/animation/AnimationClock.h
diff --git a/Source/core/animation/AnimationClock.h b/Source/core/animation/AnimationClock.h
index c2585db794f332716460609babf6fd11da7c3aad..1ce539bc115d9fcdd600e947e81692fb6846207e 100644
--- a/Source/core/animation/AnimationClock.h
+++ b/Source/core/animation/AnimationClock.h
@@ -45,7 +45,6 @@ public:
void updateTime(double time)
{
- ASSERT(m_time <= time);
Timothy Loh 2013/10/30 03:55:07 Could you mention why we're removing this asserti
Steve Block 2013/11/01 03:04:59 I removed it because we were hitting it in some un
m_time = time;
m_frozen = true;
}

Powered by Google App Engine
This is Rietveld 408576698