| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 43482a85797474481f9e2cccc4cb3732c79ab7c2..24ec074bf51aeb1ef0d38e4b11d8a02b6579a38f 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -2033,7 +2033,7 @@ void Document::updateStyle() {
|
| StyleRecalcChange localChange = ComputedStyle::stylePropagationDiff(
|
| documentStyle.get(), layoutViewItem().style());
|
| if (localChange != NoChange)
|
| - layoutViewItem().setStyle(documentStyle.release());
|
| + layoutViewItem().setStyle(std::move(documentStyle));
|
| }
|
|
|
| clearNeedsStyleRecalc();
|
|
|