| Index: Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp
|
| diff --git a/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp b/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp
|
| index 51a635af9be4d246df49d4e09c1bae9f717ae46d..4db59238bf0e1516fd5de778192d4436e7475102 100644
|
| --- a/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp
|
| +++ b/Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp
|
| @@ -343,18 +343,11 @@ void BaseMultipleFieldsDateAndTimeInputType::createShadowSubtree()
|
| container->appendChild(ClearButtonElement::create(document, *this));
|
| container->appendChild(SpinButtonElement::create(document, *this));
|
|
|
| - bool shouldAddPickerIndicator = false;
|
| - if (InputType::themeSupportsDataListUI(this))
|
| - shouldAddPickerIndicator = true;
|
| - if (RenderTheme::theme().supportsCalendarPicker(formControlType())) {
|
| - shouldAddPickerIndicator = true;
|
| + if (RenderTheme::theme().supportsCalendarPicker(formControlType()))
|
| m_pickerIndicatorIsAlwaysVisible = true;
|
| - }
|
| - if (shouldAddPickerIndicator) {
|
| - container->appendChild(PickerIndicatorElement::create(document, *this));
|
| - m_pickerIndicatorIsVisible = true;
|
| - updatePickerIndicatorVisibility();
|
| - }
|
| + container->appendChild(PickerIndicatorElement::create(document, *this));
|
| + m_pickerIndicatorIsVisible = true;
|
| + updatePickerIndicatorVisibility();
|
| }
|
|
|
| void BaseMultipleFieldsDateAndTimeInputType::destroyShadowSubtree()
|
|
|