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

Side by Side Diff: Source/core/css/resolver/FontBuilderTest.cpp

Issue 686723002: Improve RAII of StyleResolverState. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix assertions. Created 6 years, 1 month 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" 5 #include "config.h"
6 #include "core/css/resolver/FontBuilder.h" 6 #include "core/css/resolver/FontBuilder.h"
7 #include "core/rendering/style/RenderStyle.h"
7 #include "core/testing/DummyPageHolder.h" 8 #include "core/testing/DummyPageHolder.h"
8 9
9 #include <gtest/gtest.h> 10 #include <gtest/gtest.h>
10 11
11 namespace blink { 12 namespace blink {
12 13
13 class FontBuilderTest : public ::testing::Test { 14 class FontBuilderTest : public ::testing::Test {
14 protected: 15 protected:
15 RenderStyle* getStyle(const FontBuilder& builder) 16 RenderStyle* getStyle(const FontBuilder& builder)
16 { 17 {
17 return builder.m_style; 18 return builder.m_style;
18 } 19 }
19 }; 20 };
20 21
21 TEST_F(FontBuilderTest, StylePointerInitialisation) 22 TEST_F(FontBuilderTest, StylePointerInitialisation)
22 { 23 {
23 OwnPtr<DummyPageHolder> dummy = DummyPageHolder::create(IntSize(800, 600)); 24 OwnPtr<DummyPageHolder> dummy = DummyPageHolder::create(IntSize(800, 600));
24 FontBuilder builder(dummy->document()); 25 RefPtr<RenderStyle> style = RenderStyle::create();
25 EXPECT_EQ(0, getStyle(builder)); 26 FontBuilder builder(dummy->document(), style.get());
27 EXPECT_EQ(style.get(), getStyle(builder));
26 } 28 }
27 29
28 } // namespace blink 30 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698