| 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 6751cb388595d7125467ea5f9413db518ed303d6..d508b03878f2fc4f5ccbc606ec2744ad4d20d28e 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
|
| @@ -230,12 +230,10 @@ LayoutObject* NGInlineNode::CollectInlines(LayoutObject* start,
|
| // Add floats and positioned objects in the same way as atomic inlines.
|
| // Because these objects need positions, they will be handled in
|
| // NGInlineLayoutAlgorithm.
|
| - builder->Append(NGInlineItem::kFloating, kObjectReplacementCharacter,
|
| - nullptr, node);
|
| + builder->AppendOpaque(NGInlineItem::kFloating, nullptr, node);
|
|
|
| } else if (node->IsOutOfFlowPositioned()) {
|
| - builder->Append(NGInlineItem::kOutOfFlowPositioned,
|
| - kObjectReplacementCharacter, nullptr, node);
|
| + builder->AppendOpaque(NGInlineItem::kOutOfFlowPositioned, nullptr, node);
|
|
|
| } else if (node->IsAtomicInlineLevel()) {
|
| // For atomic inlines add a unicode "object replacement character" to
|
|
|