| Index: third_party/WebKit/Source/core/layout/LayoutInline.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutInline.cpp b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
|
| index 586f8ad27382481423ec5843ea2df2a9c4e326b6..9528aeea9873e7fdc33fa200f3e28618b6f29ab2 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutInline.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
|
| @@ -356,7 +356,7 @@ void LayoutInline::addChildIgnoringContinuation(LayoutObject* newChild,
|
| newStyle->setPosition(positionedAncestor->style()->position());
|
|
|
| LayoutBlockFlow* newBox = LayoutBlockFlow::createAnonymous(&document());
|
| - newBox->setStyle(newStyle.release());
|
| + newBox->setStyle(std::move(newStyle));
|
| LayoutBoxModelObject* oldContinuation = continuation();
|
| setContinuation(newBox);
|
|
|
|
|