| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index fdd22ab39239c0ba5126b1204df0a92e95ddfd21..2f13972b7b713d4ec97f956a60f0d067fb4691a6 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -127,9 +127,7 @@ HTMLInputElement::HTMLInputElement(Document& document, HTMLFormElement* form, bo
|
| , m_inputType(InputType::createText(*this))
|
| , m_inputTypeView(m_inputType)
|
| {
|
| -#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
|
| setHasCustomStyleCallbacks();
|
| -#endif
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<HTMLInputElement> HTMLInputElement::create(Document& document, HTMLFormElement* form, bool createdByParser)
|
| @@ -1788,12 +1786,10 @@ bool HTMLInputElement::supportsAutofocus() const
|
| return m_inputType->isInteractiveContent();
|
| }
|
|
|
| -#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
|
| PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer()
|
| {
|
| return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer());
|
| }
|
| -#endif
|
|
|
| bool HTMLInputElement::shouldDispatchFormControlChangeEvent(String& oldValue, String& newValue)
|
| {
|
| @@ -1810,4 +1806,14 @@ AXObject* HTMLInputElement::popupRootAXObject()
|
| return m_inputTypeView->popupRootAXObject();
|
| }
|
|
|
| +void HTMLInputElement::ensureFallbackContent()
|
| +{
|
| + m_inputTypeView->ensureFallbackContent();
|
| +}
|
| +
|
| +void HTMLInputElement::ensurePrimaryContent()
|
| +{
|
| + m_inputTypeView->ensurePrimaryContent();
|
| +}
|
| +
|
| } // namespace
|
|
|