| Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| index 7cba1b4572b99ca6156b0b851161dd045516eab7..6dbc41515164ca75f2e051ab4b76b3bee6e6654d 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| @@ -706,6 +706,16 @@ WebTextInputType WebFrameWidgetImpl::textInputType() {
|
| return WebTextInputTypeTelephone;
|
| if (type == InputTypeNames::url)
|
| return WebTextInputTypeURL;
|
| + if (type == InputTypeNames::date)
|
| + return WebTextInputTypeDate;
|
| + if (type == InputTypeNames::datetime_local)
|
| + return WebTextInputTypeDateTimeLocal;
|
| + if (type == InputTypeNames::month)
|
| + return WebTextInputTypeMonth;
|
| + if (type == InputTypeNames::time)
|
| + return WebTextInputTypeTime;
|
| + if (type == InputTypeNames::week)
|
| + return WebTextInputTypeWeek;
|
| if (type == InputTypeNames::text)
|
| return WebTextInputTypeText;
|
|
|
|
|