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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableColElement.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/HTMLTableColElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp b/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
index 424c2ee76b7c62ea6f9c4221fa5f452d62ea20ad..0199445ee167c78468dc07bb4870e39af52865a2 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
@@ -65,8 +65,8 @@ void HTMLTableColElement::parseAttribute(const QualifiedName& name,
unsigned newSpan = 0;
if (value.isEmpty() || !parseHTMLNonNegativeInteger(value, newSpan) ||
newSpan < 1) {
- // If the value of span is not a valid non-negative integer greater than zero,
- // set it to 1.
+ // If the value of span is not a valid non-negative integer greater than
+ // zero, set it to 1.
newSpan = 1;
}
m_span = newSpan;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSlotElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTableElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698