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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTextAreaElement.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/HTMLTextAreaElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
index 89be02d24bf58e2a9d96aa724184a6ea32532118..12b94ab1fb7ddd6c87d7ccd44ff2169d42c1811f 100644
--- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
@@ -2,7 +2,8 @@
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
- * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights
+ * reserved.
* (C) 2006 Alexey Proskuryakov (ap@nypop.com)
* Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
*
@@ -176,8 +177,9 @@ void HTMLTextAreaElement::parseAttribute(const QualifiedName& name,
LayoutInvalidationReason::AttributeChanged);
}
} else if (name == wrapAttr) {
- // The virtual/physical values were a Netscape extension of HTML 3.0, now deprecated.
- // The soft/hard /off values are a recommendation for HTML 4 extension by IE and NS 4.
+ // The virtual/physical values were a Netscape extension of HTML 3.0, now
+ // deprecated. The soft/hard /off values are a recommendation for HTML 4
+ // extension by IE and NS 4.
WrapMethod wrap;
if (equalIgnoringCase(value, "physical") ||
equalIgnoringCase(value, "hard") || equalIgnoringCase(value, "on"))
@@ -233,7 +235,8 @@ bool HTMLTextAreaElement::hasCustomFocusLogic() const {
}
bool HTMLTextAreaElement::isKeyboardFocusable() const {
- // If a given text area can be focused at all, then it will always be keyboard focusable.
+ // If a given text area can be focused at all, then it will always be keyboard
+ // focusable.
return isFocusable();
}
@@ -299,7 +302,8 @@ void HTMLTextAreaElement::subtreeHasChanged() {
if (!isFocused())
return;
- // When typing in a textarea, childrenChanged is not called, so we need to force the directionality check.
+ // When typing in a textarea, childrenChanged is not called, so we need to
+ // force the directionality check.
calculateAndAdjustDirectionality();
DCHECK(document().isActive());
@@ -398,8 +402,8 @@ void HTMLTextAreaElement::setNonDirtyValue(const String& value) {
void HTMLTextAreaElement::setValueCommon(const String& newValue,
TextFieldEventBehavior eventBehavior,
SetValueCommonOption setValueOption) {
- // Code elsewhere normalizes line endings added by the user via the keyboard or pasting.
- // We normalize line endings coming from JavaScript here.
+ // Code elsewhere normalizes line endings added by the user via the keyboard
+ // or pasting. We normalize line endings coming from JavaScript here.
String normalizedValue = newValue.isNull() ? "" : newValue;
normalizedValue.replace("\r\n", "\n");
normalizedValue.replace('\r', '\n');
@@ -463,7 +467,8 @@ String HTMLTextAreaElement::defaultValue() const {
}
void HTMLTextAreaElement::setDefaultValue(const String& defaultValue) {
- // To preserve comments, remove only the text nodes, then add a single text node.
+ // To preserve comments, remove only the text nodes, then add a single text
+ // node.
HeapVector<Member<Node>> textNodes;
for (Node* n = firstChild(); n; n = n->nextSibling()) {
if (n->isTextNode())

Powered by Google App Engine
This is Rietveld 408576698