| Index: Source/core/animation/AnimationPlayerTest.cpp
|
| diff --git a/Source/core/animation/AnimationPlayerTest.cpp b/Source/core/animation/AnimationPlayerTest.cpp
|
| index 3cc634a0b12ba15402f81ed09a98e209746610d5..0c1d4dca1b22d403b6f7e3f2e71f4ce52e4b2cd1 100644
|
| --- a/Source/core/animation/AnimationPlayerTest.cpp
|
| +++ b/Source/core/animation/AnimationPlayerTest.cpp
|
| @@ -214,18 +214,6 @@ TEST_F(AnimationAnimationPlayerTest, SetCurrentTimeMax)
|
| EXPECT_EQ(std::numeric_limits<double>::max(), player->currentTimeInternal());
|
| }
|
|
|
| -TEST_F(AnimationAnimationPlayerTest, SetCurrentTimeUnrestrictedDouble)
|
| -{
|
| - simulateFrame(10);
|
| - player->setCurrentTime(nullValue());
|
| - EXPECT_EQ(10, player->currentTimeInternal());
|
| - player->setCurrentTime(std::numeric_limits<double>::infinity());
|
| - EXPECT_EQ(10, player->currentTimeInternal());
|
| - player->setCurrentTime(-std::numeric_limits<double>::infinity());
|
| - EXPECT_EQ(10, player->currentTimeInternal());
|
| -}
|
| -
|
| -
|
| TEST_F(AnimationAnimationPlayerTest, SetCurrentTimeSetsStartTime)
|
| {
|
| EXPECT_EQ(0, player->startTime());
|
|
|