Index: third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc |
diff --git a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc |
index f690f02b41d38792f9e11f5741cf8badb5c16430..f67712d7941584556e9c6d12288e6734d73b87ed 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc |
+++ b/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc |
@@ -201,7 +201,10 @@ RefPtr<NGLayoutResult> NGInlineNode::Layout(NGConstraintSpace* constraint_space, |
NGInlineLayoutAlgorithm algorithm(this, constraint_space, |
ToNGInlineBreakToken(break_token)); |
RefPtr<NGLayoutResult> result = algorithm.Layout(); |
- CopyFragmentDataToLayoutBox(*constraint_space, result.Get()); |
+ |
+ block_->root_fragment_ = result->PhysicalFragment(); |
+ |
+ // CopyFragmentDataToLayoutBox(*constraint_space, result.Get()); |
return result; |
} |