| Index: third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_box.cc b/third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| index 1afd50b7171fdf702efeda1c244936d69375ed54..65a26654392ee26e54d22e1f6ba6d8fcf159f80b 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_box.cc
|
| @@ -32,9 +32,9 @@ NGFragment* NGBox::layout(const NGConstraintSpace& constraintSpace) {
|
| // TODO(layout-ng): If fixedSize is true, set the override width/height too
|
| NGLogicalSize containerSize = constraintSpace.ContainerSize();
|
| m_layoutBox->setOverrideContainingBlockContentLogicalWidth(
|
| - containerSize.inlineSize);
|
| + containerSize.inline_size);
|
| m_layoutBox->setOverrideContainingBlockContentLogicalHeight(
|
| - containerSize.blockSize);
|
| + containerSize.block_size);
|
| if (m_layoutBox->isLayoutNGBlockFlow() && m_layoutBox->needsLayout()) {
|
| toLayoutNGBlockFlow(m_layoutBox)->LayoutBlockFlow::layoutBlock(true);
|
| } else {
|
|
|