| Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| index a541b242260e9fc510be933094d0f12474574e54..05f49f63ccb89233eddb86011590306831bfde6f 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -1625,7 +1625,7 @@ LayoutTable* LayoutTable::createAnonymousWithParent(
|
| parent->isLayoutInline() ? EDisplay::InlineTable : EDisplay::Table);
|
| LayoutTable* newTable = new LayoutTable(nullptr);
|
| newTable->setDocumentForAnonymous(&parent->document());
|
| - newTable->setStyle(newStyle.release());
|
| + newTable->setStyle(std::move(newStyle));
|
| return newTable;
|
| }
|
|
|
|
|