| Index: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| index 56d0fad1e665d019a98e43b8fa0610599e88193c..cf9b8262da995a1d1d2ee16f07f0efa51fbc3c70 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm.cc
|
| @@ -36,9 +36,9 @@ NGFragment* NGBlockLayoutAlgorithm::layout(
|
|
|
| LayoutUnit blockSize =
|
| computeBlockSizeForFragment(constraintSpace, *m_style, contentSize);
|
| - NGFragment* returnFragment = new NGFragment(
|
| - inlineSize, blockSize, inlineSize, blockSize,
|
| - NGFragmentBase::HorizontalTopBottom, NGFragmentBase::LeftToRight);
|
| + NGFragment* returnFragment =
|
| + new NGFragment(inlineSize, blockSize, inlineSize, blockSize,
|
| + HorizontalTopBottom, LeftToRight);
|
| returnFragment->swapChildren(childFragments);
|
| return returnFragment;
|
| }
|
|
|