| Index: third_party/WebKit/Source/core/dom/Node.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp
|
| index 173abe1c5fecceb9eb19114e38c3e37464f53520..ca95f774e863c690a1b11df9d56fa55a179f4c78 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Node.cpp
|
| @@ -1061,9 +1061,9 @@ Document* Node::ownerDocument() const
|
| return doc == this ? nullptr : doc;
|
| }
|
|
|
| -KURL Node::baseURI() const
|
| +const KURL& Node::baseURI() const
|
| {
|
| - return parentNode() ? parentNode()->baseURI() : KURL();
|
| + return document().baseURL();
|
| }
|
|
|
| bool Node::isEqualNode(Node* other) const
|
|
|