Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: third_party/WebKit/Source/core/animation/EffectInputTest.cpp

Issue 2718023002: //third_party/WebKit/Source/core: include v8 as a user, not system, header (Closed)
Patch Set: Fix plugin/BUILD.gn deps Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <memory>
8
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> 19 #include "v8/include/v8.h"
18 #include <v8.h>
19 20
20 namespace blink { 21 namespace blink {
21 22
22 Element* appendElement(Document& document) { 23 Element* appendElement(Document& document) {
23 Element* element = document.createElement("foo"); 24 Element* element = document.createElement("foo");
24 document.documentElement()->appendChild(element); 25 document.documentElement()->appendChild(element);
25 return element; 26 return element;
26 } 27 }
27 28
28 TEST(AnimationEffectInputTest, SortedOffsets) { 29 TEST(AnimationEffectInputTest, SortedOffsets) {
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 Element* element = appendElement(scope.document()); 166 Element* element = appendElement(scope.document());
166 EffectInput::convert( 167 EffectInput::convert(
167 element, 168 element,
168 DictionarySequenceOrDictionary::fromDictionarySequence(jsKeyframes), 169 DictionarySequenceOrDictionary::fromDictionarySequence(jsKeyframes),
169 nullptr, scope.getExceptionState()); 170 nullptr, scope.getExceptionState());
170 EXPECT_TRUE(scope.getExceptionState().hadException()); 171 EXPECT_TRUE(scope.getExceptionState().hadException());
171 EXPECT_EQ(V8TypeError, scope.getExceptionState().code()); 172 EXPECT_EQ(V8TypeError, scope.getExceptionState().code());
172 } 173 }
173 174
174 } // namespace blink 175 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698