| Index: Source/core/html/HTMLInputElement.h | 
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h | 
| index 5fccef09af19c9d5bfd346d4373ea7bb0b392cc5..a48dfd80be68212ff5297be2df5d282c5a19c621 100644 | 
| --- a/Source/core/html/HTMLInputElement.h | 
| +++ b/Source/core/html/HTMLInputElement.h | 
| @@ -154,7 +154,7 @@ public: | 
| virtual bool isActivatedSubmit() const override final; | 
| virtual void setActivatedSubmit(bool flag) override final; | 
|  | 
| -    String altText() const; | 
| +    virtual String altText() const override final; | 
|  | 
| int maxResults() const { return m_maxResults; } | 
|  | 
| @@ -252,6 +252,9 @@ public: | 
| AXObject* popupRootAXObject(); | 
| virtual void didNotifySubtreeInsertionsToDocument() override; | 
|  | 
| +    virtual void ensureFallbackContent() override final; | 
| +    virtual void ensurePrimaryContent() override final; | 
| +    bool hasFallbackContent() const; | 
| protected: | 
| HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser); | 
|  | 
| @@ -348,9 +351,7 @@ private: | 
| RadioButtonGroupScope* radioButtonGroupScope() const; | 
| void addToRadioButtonGroup(); | 
| void removeFromRadioButtonGroup(); | 
| -#if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 
| virtual PassRefPtr<RenderStyle> customStyleForRenderer() override; | 
| -#endif | 
|  | 
| virtual bool shouldDispatchFormControlChangeEvent(String&, String&) override; | 
|  | 
|  |