| 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 "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 "core/animation/AnimationTestHelper.h" | 10 #include "core/animation/AnimationTestHelper.h" |
| 11 #include "core/animation/KeyframeEffectModel.h" | 11 #include "core/animation/KeyframeEffectModel.h" |
| 12 #include "core/dom/Document.h" | 12 #include "core/dom/Document.h" |
| 13 #include "core/dom/Element.h" | 13 #include "core/dom/Element.h" |
| 14 #include "core/dom/ExceptionCode.h" | 14 #include "core/dom/ExceptionCode.h" |
| 15 #include "core/testing/DummyPageHolder.h" | 15 #include "core/testing/DummyPageHolder.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include <memory> |
| 17 #include <v8.h> | 18 #include <v8.h> |
| 18 | 19 |
| 19 namespace blink { | 20 namespace blink { |
| 20 | 21 |
| 21 Element* appendElement(Document& document) | 22 Element* appendElement(Document& document) |
| 22 { | 23 { |
| 23 Element* element = document.createElement("foo", ASSERT_NO_EXCEPTION); | 24 Element* element = document.createElement("foo", ASSERT_NO_EXCEPTION); |
| 24 document.documentElement()->appendChild(element); | 25 document.documentElement()->appendChild(element); |
| 25 return element; | 26 return element; |
| 26 } | 27 } |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 jsKeyframes.append(Dictionary(keyframe2, scope.isolate(), scope.getException
State())); | 140 jsKeyframes.append(Dictionary(keyframe2, scope.isolate(), scope.getException
State())); |
| 140 jsKeyframes.append(Dictionary(keyframe3, scope.isolate(), scope.getException
State())); | 141 jsKeyframes.append(Dictionary(keyframe3, scope.isolate(), scope.getException
State())); |
| 141 | 142 |
| 142 Element* element = appendElement(scope.document()); | 143 Element* element = appendElement(scope.document()); |
| 143 EffectInput::convert(element, EffectModelOrDictionarySequenceOrDictionary::f
romDictionarySequence(jsKeyframes), nullptr, scope.getExceptionState()); | 144 EffectInput::convert(element, EffectModelOrDictionarySequenceOrDictionary::f
romDictionarySequence(jsKeyframes), nullptr, scope.getExceptionState()); |
| 144 EXPECT_TRUE(scope.getExceptionState().hadException()); | 145 EXPECT_TRUE(scope.getExceptionState().hadException()); |
| 145 EXPECT_EQ(V8TypeError, scope.getExceptionState().code()); | 146 EXPECT_EQ(V8TypeError, scope.getExceptionState().code()); |
| 146 } | 147 } |
| 147 | 148 |
| 148 } // namespace blink | 149 } // namespace blink |
| OLD | NEW |