| 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 507e1b4da659268aec8e59d04c4e4d3991da76b2..fb0004a84959517e074a0a31386c2d4f7904f7a5 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -3772,9 +3772,9 @@ void Document::moveNodeIteratorsToNewDocument(Node& node, Document& newDocument)
|
| }
|
| }
|
|
|
| -void Document::updateRangesAfterNodeMovedToAnotherDocument(const Node& node)
|
| +void Document::didMoveTreeToNewDocument(const Node& root)
|
| {
|
| - DCHECK_NE(node.document(), this);
|
| + DCHECK_NE(root.document(), this);
|
| if (m_ranges.isEmpty())
|
| return;
|
|
|
|
|