Index: Source/core/animation/AnimationTimelineTest.cpp |
diff --git a/Source/core/animation/AnimationTimelineTest.cpp b/Source/core/animation/AnimationTimelineTest.cpp |
index 889e29c920843cc9699e074b6efdeee386eccebb..276c43a1831dc0c3ddfd718f2763bf718a6cf615 100644 |
--- a/Source/core/animation/AnimationTimelineTest.cpp |
+++ b/Source/core/animation/AnimationTimelineTest.cpp |
@@ -196,8 +196,8 @@ TEST_F(AnimationAnimationTimelineTest, PauseForTesting) |
AnimationPlayer* player2 = timeline->play(anim2.get()); |
timeline->pauseAnimationsForTesting(seekTime); |
- EXPECT_FLOAT_EQ(seekTime, player1->currentTimeInternal()); |
- EXPECT_FLOAT_EQ(seekTime, player2->currentTimeInternal()); |
+ EXPECT_FLOAT_EQ(seekTime, player1->currentTime() / 1000.0); |
+ EXPECT_FLOAT_EQ(seekTime, player2->currentTime() / 1000.0); |
} |
TEST_F(AnimationAnimationTimelineTest, DelayBeforeAnimationStart) |