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

Side by Side Diff: third_party/WebKit/Source/core/style/OutlineValueTest.cpp

Issue 1538363002: Remove config.h inclusion from third_party/WebKit/Source/core/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 "config.h"
6 #include "core/style/OutlineValue.h" 5 #include "core/style/OutlineValue.h"
7 6
8 #include "testing/gtest/include/gtest/gtest.h" 7 #include "testing/gtest/include/gtest/gtest.h"
9 8
10 namespace blink { 9 namespace blink {
11 10
12 TEST(OutlineValueTest, VisuallyEqualStyle) 11 TEST(OutlineValueTest, VisuallyEqualStyle)
13 { 12 {
14 OutlineValue outline1; 13 OutlineValue outline1;
15 OutlineValue outline2; 14 OutlineValue outline2;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 EXPECT_TRUE(outline1.visuallyEqual(outline2)); 49 EXPECT_TRUE(outline1.visuallyEqual(outline2));
51 50
52 outline1.setIsAuto(AUTO_ON); 51 outline1.setIsAuto(AUTO_ON);
53 EXPECT_FALSE(outline1.visuallyEqual(outline2)); 52 EXPECT_FALSE(outline1.visuallyEqual(outline2));
54 53
55 outline2.setIsAuto(AUTO_ON); 54 outline2.setIsAuto(AUTO_ON);
56 EXPECT_TRUE(outline1.visuallyEqual(outline2)); 55 EXPECT_TRUE(outline1.visuallyEqual(outline2));
57 } 56 }
58 57
59 } // namespace blink 58 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/NinePieceImage.cpp ('k') | third_party/WebKit/Source/core/style/PathStyleMotionPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698