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/EffectInput.h" | 5 #include "core/animation/EffectInput.h" |
6 | 6 |
| 7 #include <v8.h> |
| 8 #include <memory> |
7 #include "bindings/core/v8/Dictionary.h" | 9 #include "bindings/core/v8/Dictionary.h" |
8 #include "bindings/core/v8/DictionarySequenceOrDictionary.h" | 10 #include "bindings/core/v8/DictionarySequenceOrDictionary.h" |
9 #include "bindings/core/v8/V8BindingForTesting.h" | 11 #include "bindings/core/v8/V8BindingForTesting.h" |
10 #include "core/animation/AnimationTestHelper.h" | 12 #include "core/animation/AnimationTestHelper.h" |
11 #include "core/animation/KeyframeEffectModel.h" | 13 #include "core/animation/KeyframeEffectModel.h" |
12 #include "core/dom/Document.h" | 14 #include "core/dom/Document.h" |
13 #include "core/dom/Element.h" | 15 #include "core/dom/Element.h" |
14 #include "core/dom/ExceptionCode.h" | 16 #include "core/dom/ExceptionCode.h" |
15 #include "core/testing/DummyPageHolder.h" | 17 #include "core/testing/DummyPageHolder.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
17 #include <memory> | |
18 #include <v8.h> | |
19 | 19 |
20 namespace blink { | 20 namespace blink { |
21 | 21 |
22 Element* appendElement(Document& document) { | 22 Element* appendElement(Document& document) { |
23 Element* element = document.createElement("foo"); | 23 Element* element = document.createElement("foo"); |
24 document.documentElement()->appendChild(element); | 24 document.documentElement()->appendChild(element); |
25 return element; | 25 return element; |
26 } | 26 } |
27 | 27 |
28 TEST(AnimationEffectInputTest, SortedOffsets) { | 28 TEST(AnimationEffectInputTest, SortedOffsets) { |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 Element* element = appendElement(scope.document()); | 165 Element* element = appendElement(scope.document()); |
166 EffectInput::convert( | 166 EffectInput::convert( |
167 element, | 167 element, |
168 DictionarySequenceOrDictionary::fromDictionarySequence(jsKeyframes), | 168 DictionarySequenceOrDictionary::fromDictionarySequence(jsKeyframes), |
169 nullptr, scope.getExceptionState()); | 169 nullptr, scope.getExceptionState()); |
170 EXPECT_TRUE(scope.getExceptionState().hadException()); | 170 EXPECT_TRUE(scope.getExceptionState().hadException()); |
171 EXPECT_EQ(V8TypeError, scope.getExceptionState().code()); | 171 EXPECT_EQ(V8TypeError, scope.getExceptionState().code()); |
172 } | 172 } |
173 | 173 |
174 } // namespace blink | 174 } // namespace blink |
OLD | NEW |