| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/animation/KeyframeEffect.h" | 5 #include "core/animation/KeyframeEffect.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/Dictionary.h" | 7 #include "bindings/core/v8/Dictionary.h" |
| 8 #include "bindings/core/v8/EffectModelOrDictionarySequenceOrDictionary.h" | 8 #include "bindings/core/v8/EffectModelOrDictionarySequenceOrDictionary.h" |
| 9 #include "bindings/core/v8/V8BindingForTesting.h" | 9 #include "bindings/core/v8/V8BindingForTesting.h" |
| 10 #include "bindings/core/v8/V8KeyframeEffectOptions.h" | 10 #include "bindings/core/v8/V8KeyframeEffectOptions.h" |
| 11 #include "core/animation/AnimationClock.h" | 11 #include "core/animation/AnimationClock.h" |
| 12 #include "core/animation/AnimationEffectTiming.h" | 12 #include "core/animation/AnimationEffectTiming.h" |
| 13 #include "core/animation/AnimationTestHelper.h" | 13 #include "core/animation/AnimationTestHelper.h" |
| 14 #include "core/animation/AnimationTimeline.h" | 14 #include "core/animation/AnimationTimeline.h" |
| 15 #include "core/animation/KeyframeEffectModel.h" | 15 #include "core/animation/KeyframeEffectModel.h" |
| 16 #include "core/animation/Timing.h" | 16 #include "core/animation/Timing.h" |
| 17 #include "core/dom/Document.h" | 17 #include "core/dom/Document.h" |
| 18 #include "core/testing/DummyPageHolder.h" | 18 #include "core/testing/DummyPageHolder.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 20 #include <memory> |
| 20 #include <v8.h> | 21 #include <v8.h> |
| 21 | 22 |
| 22 namespace blink { | 23 namespace blink { |
| 23 | 24 |
| 24 class KeyframeEffectTest : public ::testing::Test { | 25 class KeyframeEffectTest : public ::testing::Test { |
| 25 protected: | 26 protected: |
| 26 KeyframeEffectTest() | 27 KeyframeEffectTest() |
| 27 : pageHolder(DummyPageHolder::create()) | 28 : pageHolder(DummyPageHolder::create()) |
| 28 { | 29 { |
| 29 element = document().createElement("foo", ASSERT_NO_EXCEPTION); | 30 element = document().createElement("foo", ASSERT_NO_EXCEPTION); |
| 30 | 31 |
| 31 document().animationClock().resetTimeForTesting(document().timeline().ze
roTime()); | 32 document().animationClock().resetTimeForTesting(document().timeline().ze
roTime()); |
| 32 document().documentElement()->appendChild(element.get()); | 33 document().documentElement()->appendChild(element.get()); |
| 33 EXPECT_EQ(0, document().timeline().currentTime()); | 34 EXPECT_EQ(0, document().timeline().currentTime()); |
| 34 } | 35 } |
| 35 | 36 |
| 36 Document& document() const { return pageHolder->document(); } | 37 Document& document() const { return pageHolder->document(); } |
| 37 | 38 |
| 38 OwnPtr<DummyPageHolder> pageHolder; | 39 std::unique_ptr<DummyPageHolder> pageHolder; |
| 39 Persistent<Element> element; | 40 Persistent<Element> element; |
| 40 TrackExceptionState exceptionState; | 41 TrackExceptionState exceptionState; |
| 41 }; | 42 }; |
| 42 | 43 |
| 43 class AnimationKeyframeEffectV8Test : public KeyframeEffectTest { | 44 class AnimationKeyframeEffectV8Test : public KeyframeEffectTest { |
| 44 protected: | 45 protected: |
| 45 template<typename T> | 46 template<typename T> |
| 46 static KeyframeEffect* createAnimation(Element* element, Vector<Dictionary>
keyframeDictionaryVector, T timingInput, ExceptionState& exceptionState) | 47 static KeyframeEffect* createAnimation(Element* element, Vector<Dictionary>
keyframeDictionaryVector, T timingInput, ExceptionState& exceptionState) |
| 47 { | 48 { |
| 48 return KeyframeEffect::create(nullptr, element, EffectModelOrDictionaryS
equenceOrDictionary::fromDictionarySequence(keyframeDictionaryVector), timingInp
ut, exceptionState); | 49 return KeyframeEffect::create(nullptr, element, EffectModelOrDictionaryS
equenceOrDictionary::fromDictionarySequence(keyframeDictionaryVector), timingInp
ut, exceptionState); |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 Timing timing; | 361 Timing timing; |
| 361 timing.iterationDuration = 5; | 362 timing.iterationDuration = 5; |
| 362 KeyframeEffect* animation = KeyframeEffect::create(element.get(), nullptr, t
iming); | 363 KeyframeEffect* animation = KeyframeEffect::create(element.get(), nullptr, t
iming); |
| 363 EXPECT_EQ(element.get(), animation->target()); | 364 EXPECT_EQ(element.get(), animation->target()); |
| 364 document().timeline().play(animation); | 365 document().timeline().play(animation); |
| 365 pageHolder.reset(); | 366 pageHolder.reset(); |
| 366 element.clear(); | 367 element.clear(); |
| 367 } | 368 } |
| 368 | 369 |
| 369 } // namespace blink | 370 } // namespace blink |
| OLD | NEW |