| Index: third_party/WebKit/Source/core/dom/Document.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
|
| index 2a5f7b490cdb9622aaa1c6348342294d5f006ba6..9cc4fa66249618c7a2d9374115c31859894316a9 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.h
|
| +++ b/third_party/WebKit/Source/core/dom/Document.h
|
| @@ -1444,8 +1444,10 @@ class CORE_EXPORT Document : public ContainerNode,
|
| bool m_wellFormed;
|
|
|
| // Document URLs.
|
| - KURL m_url; // Document.URL: The URL from which this document was retrieved.
|
| - KURL m_baseURL; // Node.baseURI: The URL to use when resolving relative URLs.
|
| + KURL m_url = blankURL(); // Document.URL: The URL from which this document
|
| + // was retrieved.
|
| + KURL m_baseURL =
|
| + blankURL(); // Node.baseURI: The URL to use when resolving relative URLs.
|
| KURL m_baseURLOverride; // An alternative base URL that takes precedence over
|
| // m_baseURL (but not m_baseElementURL).
|
| KURL m_baseElementURL; // The URL set by the <base> element.
|
|
|