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

Unified Diff: third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp

Issue 2390563002: Reflow comments in core/html/forms/. (Closed)
Patch Set: 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/forms/DateTimeLocalInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp b/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
index 2acf76bd1a44ec93408d6120c78cda785739e85d..86babf919a13e4d67a600407584e739893f81baa 100644
--- a/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
@@ -61,14 +61,16 @@ const AtomicString& DateTimeLocalInputType::formControlType() const {
}
double DateTimeLocalInputType::valueAsDate() const {
- // valueAsDate doesn't work for the datetime-local type according to the standard.
+ // valueAsDate doesn't work for the datetime-local type according to the
+ // standard.
return DateComponents::invalidMilliseconds();
}
void DateTimeLocalInputType::setValueAsDate(
double value,
ExceptionState& exceptionState) const {
- // valueAsDate doesn't work for the datetime-local type according to the standard.
+ // valueAsDate doesn't work for the datetime-local type according to the
+ // standard.
InputType::setValueAsDate(value, exceptionState);
}

Powered by Google App Engine
This is Rietveld 408576698