| Index: third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
|
| diff --git a/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc b/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
|
| index efdb2e3779fea0cde1d2e09710141c9307e2b03c..f50fa2c36bc1cae4a490f46ed9935f46e78d3123 100644
|
| --- a/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
|
| +++ b/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
|
| @@ -41,9 +41,9 @@ void LayoutNGBlockFlow::UpdateBlockLayout(bool relayout_children) {
|
| SetLogicalTop(computed_values.position_);
|
| }
|
|
|
| - for (NGBlockNode descendant : result->OutOfFlowDescendants())
|
| - descendant.UseOldOutOfFlowPositioning();
|
| -
|
| + for (NGOutOfFlowPositionedDescendant descendant :
|
| + result->OutOfFlowPositionedDescendants())
|
| + descendant.node.UseOldOutOfFlowPositioning();
|
| }
|
|
|
| NGInlineNodeData& LayoutNGBlockFlow::GetNGInlineNodeData() const {
|
|
|