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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAnchorElement.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/HTMLAnchorElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
index 84e70f673d31bdc737cf9edcbdacbdb9d7b01102..e96ea530f1996b860df16b16f3d97118b80a52fa 100644
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
@@ -2,7 +2,8 @@
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Simon Hausmann <hausmann@kde.org>
- * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
+ * reserved.
* (C) 2006 Graham Dennis (graham.dennis@gmail.com)
*
* This library is free software; you can redistribute it and/or
@@ -132,7 +133,8 @@ DEFINE_TRACE(HTMLAnchorElement) {
bool HTMLAnchorElement::supportsFocus() const {
if (hasEditableStyle(*this))
return HTMLElement::supportsFocus();
- // If not a link we should still be able to focus the element if it has tabIndex.
+ // If not a link we should still be able to focus the element if it has
+ // tabIndex.
return isLink() || HTMLElement::supportsFocus();
}
@@ -394,8 +396,8 @@ void HTMLAnchorElement::handleClick(Event* event) {
appendServerMapMousePosition(url, event);
KURL completedURL = document().completeURL(url.toString());
- // Schedule the ping before the frame load. Prerender in Chrome may kill the renderer as soon as the navigation is
- // sent out.
+ // Schedule the ping before the frame load. Prerender in Chrome may kill the
+ // renderer as soon as the navigation is sent out.
sendPings(completedURL);
ResourceRequest request(completedURL);
« no previous file with comments | « third_party/WebKit/Source/core/html/FormAssociatedElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698