Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: third_party/WebKit/Source/core/html/HTMLBaseElement.cpp

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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())
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLBRElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLBodyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698