| Index: third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp b/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
|
| index a42cafcef7697ed1e549c88a803ed62548f51624..34191db89e9806234e9ca9f41e28b40e697355e2 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLBaseElement.cpp
|
| @@ -66,9 +66,10 @@ bool HTMLBaseElement::isURLAttribute(const Attribute& attribute) const {
|
| }
|
|
|
| KURL HTMLBaseElement::href() const {
|
| - // This does not use the getURLAttribute function because that will resolve relative to the document's base URL;
|
| - // base elements like this one can be used to set that base URL. Thus we need to resolve relative to the document's
|
| - // URL and ignore the base URL.
|
| + // This does not use the getURLAttribute function because that will resolve
|
| + // relative to the document's base URL; base elements like this one can be
|
| + // used to set that base URL. Thus we need to resolve relative to the
|
| + // document's URL and ignore the base URL.
|
|
|
| const AtomicString& attributeValue = fastGetAttribute(hrefAttr);
|
| if (attributeValue.isNull())
|
|
|