| 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);
|
| }
|
|
|
|
|