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

Side by Side Diff: third_party/WebKit/Source/core/layout/ng/ng_block_node_test.cc

Issue 2656693007: [LayoutNG] Return MinAndMaxContentSizes by value, step 1 (Closed)
Patch Set: Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/layout/ng/ng_block_node.h" 5 #include "core/layout/ng/ng_block_node.h"
6 6
7 #include "core/layout/ng/ng_box_fragment.h" 7 #include "core/layout/ng/ng_box_fragment.h"
8 #include "core/style/ComputedStyle.h" 8 #include "core/style/ComputedStyle.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 namespace blink { 11 namespace blink {
12 namespace { 12 namespace {
13 class NGBlockNodeForTest : public ::testing::Test { 13 class NGBlockNodeForTest : public ::testing::Test {
14 protected: 14 protected:
15 void SetUp() override { style_ = ComputedStyle::create(); } 15 void SetUp() override { style_ = ComputedStyle::create(); }
16 16
17 RefPtr<ComputedStyle> style_; 17 RefPtr<ComputedStyle> style_;
18 }; 18 };
19 19
20 TEST_F(NGBlockNodeForTest, MinAndMaxContent) { 20 TEST_F(NGBlockNodeForTest, MinAndMaxContent) {
21 const int kWidth = 30; 21 const int kWidth = 30;
22 22
23 RefPtr<ComputedStyle> first_style = ComputedStyle::create(); 23 RefPtr<ComputedStyle> first_style = ComputedStyle::create();
24 first_style->setWidth(Length(kWidth, Fixed)); 24 first_style->setWidth(Length(kWidth, Fixed));
25 NGBlockNode* first_child = new NGBlockNode(first_style.get()); 25 NGBlockNode* first_child = new NGBlockNode(first_style.get());
26 26
27 NGBlockNode* box = new NGBlockNode(style_.get()); 27 NGBlockNode* box = new NGBlockNode(style_.get());
28 box->SetFirstChild(first_child); 28 box->SetFirstChild(first_child);
29 29
30 MinAndMaxContentSizes sizes; 30 MinAndMaxContentSizes sizes = box->ComputeMinAndMaxContentSizes();
31 while (!box->ComputeMinAndMaxContentSizes(&sizes))
32 continue;
33 EXPECT_EQ(LayoutUnit(kWidth), sizes.min_content); 31 EXPECT_EQ(LayoutUnit(kWidth), sizes.min_content);
34 EXPECT_EQ(LayoutUnit(kWidth), sizes.max_content); 32 EXPECT_EQ(LayoutUnit(kWidth), sizes.max_content);
35 } 33 }
36 } // namespace 34 } // namespace
37 } // namespace blink 35 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698