diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-02-14 14:41:19 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-02-14 14:41:19 +0100 |
commit | 8a15fd8d24e4373f462046b46fbe8558f57f3403 (patch) | |
tree | 9c485d6b346a2fed8aaa14fbb154046296d22b7a /dom/html/nsIFormControl.h | |
parent | 34125a031ed9c7814d2145070294ead44b7504b3 (diff) | |
download | UXP-8a15fd8d24e4373f462046b46fbe8558f57f3403.tar UXP-8a15fd8d24e4373f462046b46fbe8558f57f3403.tar.gz UXP-8a15fd8d24e4373f462046b46fbe8558f57f3403.tar.lz UXP-8a15fd8d24e4373f462046b46fbe8558f57f3403.tar.xz UXP-8a15fd8d24e4373f462046b46fbe8558f57f3403.zip |
Bug 1286182: Implement the layout for <input type=date>
Diffstat (limited to 'dom/html/nsIFormControl.h')
-rw-r--r-- | dom/html/nsIFormControl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/html/nsIFormControl.h b/dom/html/nsIFormControl.h index aaa92146c..e07f7c829 100644 --- a/dom/html/nsIFormControl.h +++ b/dom/html/nsIFormControl.h @@ -270,8 +270,8 @@ nsIFormControl::IsSingleLineTextControl(bool aExcludePassword, uint32_t aType) #if defined(MOZ_WIDGET_ANDROID) || defined(MOZ_WIDGET_GONK) // On Android/B2G, date/time input appears as a normal text box. aType == NS_FORM_INPUT_TIME || -#endif aType == NS_FORM_INPUT_DATE || +#endif aType == NS_FORM_INPUT_MONTH || aType == NS_FORM_INPUT_WEEK || aType == NS_FORM_INPUT_DATETIME_LOCAL || |