| OLD | NEW |
| 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/layout/ng/ng_min_max_content_size.h" |
| 8 #include "core/style/ComputedStyle.h" | 9 #include "core/style/ComputedStyle.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 11 |
| 11 namespace blink { | 12 namespace blink { |
| 12 namespace { | 13 namespace { |
| 13 class NGBlockNodeForTest : public ::testing::Test { | 14 class NGBlockNodeForTest : public ::testing::Test { |
| 14 protected: | 15 protected: |
| 15 void SetUp() override { style_ = ComputedStyle::create(); } | 16 void SetUp() override { style_ = ComputedStyle::create(); } |
| 16 | 17 |
| 17 RefPtr<ComputedStyle> style_; | 18 RefPtr<ComputedStyle> style_; |
| 18 }; | 19 }; |
| 19 | 20 |
| 20 TEST_F(NGBlockNodeForTest, MinAndMaxContent) { | 21 TEST_F(NGBlockNodeForTest, MinAndMaxContent) { |
| 21 const int kWidth = 30; | 22 const int kWidth = 30; |
| 22 | 23 |
| 23 RefPtr<ComputedStyle> first_style = ComputedStyle::create(); | 24 RefPtr<ComputedStyle> first_style = ComputedStyle::create(); |
| 24 first_style->setWidth(Length(kWidth, Fixed)); | 25 first_style->setWidth(Length(kWidth, Fixed)); |
| 25 NGBlockNode* first_child = new NGBlockNode(first_style.get()); | 26 NGBlockNode* first_child = new NGBlockNode(first_style.get()); |
| 26 | 27 |
| 27 NGBlockNode* box = new NGBlockNode(style_.get()); | 28 NGBlockNode* box = new NGBlockNode(style_.get()); |
| 28 box->SetFirstChild(first_child); | 29 box->SetFirstChild(first_child); |
| 29 | 30 |
| 30 MinAndMaxContentSizes sizes = box->ComputeMinAndMaxContentSizes(); | 31 MinMaxContentSize sizes = box->ComputeMinMaxContentSize(); |
| 31 EXPECT_EQ(LayoutUnit(kWidth), sizes.min_content); | 32 EXPECT_EQ(LayoutUnit(kWidth), sizes.min_content); |
| 32 EXPECT_EQ(LayoutUnit(kWidth), sizes.max_content); | 33 EXPECT_EQ(LayoutUnit(kWidth), sizes.max_content); |
| 33 } | 34 } |
| 34 } // namespace | 35 } // namespace |
| 35 } // namespace blink | 36 } // namespace blink |
| OLD | NEW |