| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "core/animation/AnimationClock.h" | 33 #include "core/animation/AnimationClock.h" |
| 34 #include "core/animation/AnimationTimeline.h" | 34 #include "core/animation/AnimationTimeline.h" |
| 35 #include "core/animation/CompositorPendingAnimations.h" | 35 #include "core/animation/CompositorPendingAnimations.h" |
| 36 #include "core/animation/ElementAnimations.h" | 36 #include "core/animation/ElementAnimations.h" |
| 37 #include "core/animation/KeyframeEffect.h" | 37 #include "core/animation/KeyframeEffect.h" |
| 38 #include "core/dom/Document.h" | 38 #include "core/dom/Document.h" |
| 39 #include "core/dom/QualifiedName.h" | 39 #include "core/dom/QualifiedName.h" |
| 40 #include "core/testing/DummyPageHolder.h" | 40 #include "core/testing/DummyPageHolder.h" |
| 41 #include "platform/weborigin/KURL.h" | 41 #include "platform/weborigin/KURL.h" |
| 42 #include "testing/gtest/include/gtest/gtest.h" | 42 #include "testing/gtest/include/gtest/gtest.h" |
| 43 #include <memory> | |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| 47 class AnimationAnimationTest : public ::testing::Test { | 46 class AnimationAnimationTest : public ::testing::Test { |
| 48 protected: | 47 protected: |
| 49 void SetUp() override | 48 void SetUp() override |
| 50 { | 49 { |
| 51 setUpWithoutStartingTimeline(); | 50 setUpWithoutStartingTimeline(); |
| 52 startTimeline(); | 51 startTimeline(); |
| 53 } | 52 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 82 document->animationClock().updateTime(time); | 81 document->animationClock().updateTime(time); |
| 83 document->compositorPendingAnimations().update(false); | 82 document->compositorPendingAnimations().update(false); |
| 84 // The timeline does not know about our animation, so we have to explici
tly call update(). | 83 // The timeline does not know about our animation, so we have to explici
tly call update(). |
| 85 return animation->update(TimingUpdateForAnimationFrame); | 84 return animation->update(TimingUpdateForAnimationFrame); |
| 86 } | 85 } |
| 87 | 86 |
| 88 Persistent<Document> document; | 87 Persistent<Document> document; |
| 89 Persistent<AnimationTimeline> timeline; | 88 Persistent<AnimationTimeline> timeline; |
| 90 Persistent<Animation> animation; | 89 Persistent<Animation> animation; |
| 91 TrackExceptionState exceptionState; | 90 TrackExceptionState exceptionState; |
| 92 std::unique_ptr<DummyPageHolder> pageHolder; | 91 OwnPtr<DummyPageHolder> pageHolder; |
| 93 }; | 92 }; |
| 94 | 93 |
| 95 TEST_F(AnimationAnimationTest, InitialState) | 94 TEST_F(AnimationAnimationTest, InitialState) |
| 96 { | 95 { |
| 97 setUpWithoutStartingTimeline(); | 96 setUpWithoutStartingTimeline(); |
| 98 animation = timeline->play(0); | 97 animation = timeline->play(0); |
| 99 EXPECT_EQ(Animation::Pending, animation->playStateInternal()); | 98 EXPECT_EQ(Animation::Pending, animation->playStateInternal()); |
| 100 EXPECT_EQ(0, animation->currentTimeInternal()); | 99 EXPECT_EQ(0, animation->currentTimeInternal()); |
| 101 EXPECT_FALSE(animation->paused()); | 100 EXPECT_FALSE(animation->paused()); |
| 102 EXPECT_EQ(1, animation->playbackRate()); | 101 EXPECT_EQ(1, animation->playbackRate()); |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 EXPECT_EQ(Animation::Idle, animation->playStateInternal()); | 816 EXPECT_EQ(Animation::Idle, animation->playStateInternal()); |
| 818 EXPECT_TRUE(std::isnan(animation->currentTime())); | 817 EXPECT_TRUE(std::isnan(animation->currentTime())); |
| 819 EXPECT_TRUE(std::isnan(animation->startTime())); | 818 EXPECT_TRUE(std::isnan(animation->startTime())); |
| 820 animation->pause(); | 819 animation->pause(); |
| 821 EXPECT_EQ(Animation::Pending, animation->playStateInternal()); | 820 EXPECT_EQ(Animation::Pending, animation->playStateInternal()); |
| 822 EXPECT_EQ(0, animation->currentTime()); | 821 EXPECT_EQ(0, animation->currentTime()); |
| 823 EXPECT_TRUE(std::isnan(animation->startTime())); | 822 EXPECT_TRUE(std::isnan(animation->startTime())); |
| 824 } | 823 } |
| 825 | 824 |
| 826 } // namespace blink | 825 } // namespace blink |
| OLD | NEW |