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

Unified Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.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/HTMLProgressElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
index d9668833b37f1dae5e339b11570f612d5801d127..f13ec06d29db4aff8c77b11a58c20426591d6740 100644
--- a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
@@ -112,7 +112,8 @@ double HTMLProgressElement::max() const {
}
void HTMLProgressElement::setMax(double max) {
- // FIXME: The specification says we should ignore the input value if it is inferior or equal to 0.
+ // FIXME: The specification says we should ignore the input value if it is
+ // inferior or equal to 0.
setFloatingPointAttribute(maxAttr, max > 0 ? max : 1);
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLScriptElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698