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

Unified Diff: Source/core/animation/DocumentTimelineTest.cpp

Issue 194673002: Web Animations: Refactor KeyframeEffectModel to work via an InterpolationEffect. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@interpolationWrap
Patch Set: Created 6 years, 9 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/DocumentTimelineTest.cpp
diff --git a/Source/core/animation/DocumentTimelineTest.cpp b/Source/core/animation/DocumentTimelineTest.cpp
index 0b3af5910916a5b7f4a29579ee8f9792d368b708..1eedf59b59b5388e45778de6099626192abc322c 100644
--- a/Source/core/animation/DocumentTimelineTest.cpp
+++ b/Source/core/animation/DocumentTimelineTest.cpp
@@ -159,7 +159,7 @@ TEST_F(AnimationDocumentTimelineTest, EmptyForwardsKeyframeAnimation)
updateClockAndService(0);
EXPECT_FLOAT_EQ(0, timeline->currentTime());
EXPECT_TRUE(anim->isInEffect());
- EXPECT_TRUE(anim->compositableValues()->isEmpty());
+ EXPECT_TRUE(anim->activeInterpolations()->isEmpty());
platformTiming->expectNoMoreActions();
updateClockAndService(100);

Powered by Google App Engine
This is Rietveld 408576698