| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index 896418205634de9cb0d2747b5c963d3922b05adf..5fccef09af19c9d5bfd346d4373ea7bb0b392cc5 100644
|
| --- a/Source/core/html/HTMLInputElement.h
|
| +++ b/Source/core/html/HTMLInputElement.h
|
| @@ -154,7 +154,7 @@
|
| virtual bool isActivatedSubmit() const override final;
|
| virtual void setActivatedSubmit(bool flag) override final;
|
|
|
| - virtual String altText() const override final;
|
| + String altText() const;
|
|
|
| int maxResults() const { return m_maxResults; }
|
|
|
| @@ -252,8 +252,6 @@
|
| AXObject* popupRootAXObject();
|
| virtual void didNotifySubtreeInsertionsToDocument() override;
|
|
|
| - virtual void ensureFallbackContent() override final;
|
| - virtual void ensurePrimaryContent() override final;
|
| protected:
|
| HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);
|
|
|
| @@ -350,7 +348,9 @@
|
| 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;
|
|
|
|
|