| Index: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| index 5c176ccf199f8990a2f738dade6bd4234cfc9b83..8750747d40fa0820d34e980a0e694832cd267b38 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
|
| @@ -555,12 +555,12 @@ TEST_F(NGBlockLayoutAlgorithmTest, PercentageResolutionSize) {
|
| NGLogicalSize(LayoutUnit(100), NGSizeIndefinite));
|
| NGPhysicalFragment* frag = RunBlockLayoutAlgorithm(space, first_child);
|
|
|
| - EXPECT_EQ(frag->Width(), LayoutUnit(kWidth + kPaddingLeft));
|
| - EXPECT_EQ(frag->Type(), NGPhysicalFragmentBase::FragmentBox);
|
| + EXPECT_EQ(LayoutUnit(kWidth + kPaddingLeft), frag->Width());
|
| + EXPECT_EQ(NGPhysicalFragmentBase::FragmentBox, frag->Type());
|
| ASSERT_EQ(frag->Children().size(), 1UL);
|
|
|
| const NGPhysicalFragmentBase* child = frag->Children()[0];
|
| - EXPECT_EQ(child->Width(), LayoutUnit(12));
|
| + EXPECT_EQ(LayoutUnit(12), child->Width());
|
| }
|
|
|
| // A very simple auto margin case. We rely on the tests in ng_length_utils_test
|
|
|