| 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 "config.h" | 5 #include "sky/engine/config.h" |
| 6 #include "core/animation/Animation.h" | 6 #include "sky/engine/core/animation/Animation.h" |
| 7 | 7 |
| 8 #include <gtest/gtest.h> | 8 #include <gtest/gtest.h> |
| 9 | 9 |
| 10 #include "bindings/core/v8/Dictionary.h" | |
| 11 #include "bindings/core/v8/Nullable.h" | |
| 12 #include "core/animation/AnimationClock.h" | |
| 13 #include "core/animation/AnimationHelpers.h" | |
| 14 #include "core/animation/AnimationNodeTiming.h" | |
| 15 #include "core/animation/AnimationTestHelper.h" | |
| 16 #include "core/animation/AnimationTimeline.h" | |
| 17 #include "core/animation/KeyframeEffectModel.h" | |
| 18 #include "core/animation/Timing.h" | |
| 19 #include "core/dom/Document.h" | |
| 20 #include "core/testing/DummyPageHolder.h" | 10 #include "core/testing/DummyPageHolder.h" |
| 11 #include "sky/engine/bindings/core/v8/Dictionary.h" |
| 12 #include "sky/engine/bindings/core/v8/Nullable.h" |
| 13 #include "sky/engine/core/animation/AnimationClock.h" |
| 14 #include "sky/engine/core/animation/AnimationHelpers.h" |
| 15 #include "sky/engine/core/animation/AnimationNodeTiming.h" |
| 16 #include "sky/engine/core/animation/AnimationTestHelper.h" |
| 17 #include "sky/engine/core/animation/AnimationTimeline.h" |
| 18 #include "sky/engine/core/animation/KeyframeEffectModel.h" |
| 19 #include "sky/engine/core/animation/Timing.h" |
| 20 #include "sky/engine/core/dom/Document.h" |
| 21 #include "v8/include/v8.h" | 21 #include "v8/include/v8.h" |
| 22 | 22 |
| 23 namespace blink { | 23 namespace blink { |
| 24 | 24 |
| 25 class AnimationAnimationTest : public ::testing::Test { | 25 class AnimationAnimationTest : public ::testing::Test { |
| 26 protected: | 26 protected: |
| 27 AnimationAnimationTest() | 27 AnimationAnimationTest() |
| 28 : pageHolder(DummyPageHolder::create()) | 28 : pageHolder(DummyPageHolder::create()) |
| 29 , document(pageHolder->document()) | 29 , document(pageHolder->document()) |
| 30 , element(document.createElement("foo", ASSERT_NO_EXCEPTION)) | 30 , element(document.createElement("foo", ASSERT_NO_EXCEPTION)) |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 EXPECT_EQ(element.get(), animation->target()); | 451 EXPECT_EQ(element.get(), animation->target()); |
| 452 document.timeline().play(animation.get()); | 452 document.timeline().play(animation.get()); |
| 453 pageHolder.clear(); | 453 pageHolder.clear(); |
| 454 element.clear(); | 454 element.clear(); |
| 455 #if !ENABLE(OILPAN) | 455 #if !ENABLE(OILPAN) |
| 456 EXPECT_EQ(0, animation->target()); | 456 EXPECT_EQ(0, animation->target()); |
| 457 #endif | 457 #endif |
| 458 } | 458 } |
| 459 | 459 |
| 460 } // namespace blink | 460 } // namespace blink |
| OLD | NEW |