| 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 d21d3927d98c5334f4b181dc4381a835d60bcfdf..56d0fad1e665d019a98e43b8fa0610599e88193c 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,8 +36,9 @@ NGFragment* NGBlockLayoutAlgorithm::layout(
|
|
|
| LayoutUnit blockSize =
|
| computeBlockSizeForFragment(constraintSpace, *m_style, contentSize);
|
| - NGFragment* returnFragment =
|
| - new NGFragment(inlineSize, blockSize, inlineSize, blockSize);
|
| + NGFragment* returnFragment = new NGFragment(
|
| + inlineSize, blockSize, inlineSize, blockSize,
|
| + NGFragmentBase::HorizontalTopBottom, NGFragmentBase::LeftToRight);
|
| returnFragment->swapChildren(childFragments);
|
| return returnFragment;
|
| }
|
|
|