| Index: Source/core/html/HTMLInputElement.h
|
| diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
|
| index 707baf43d96565f16eae3d9d086f39321b10d89c..0033aa17a3ed48b0c26e445358feaaf4ca6046c6 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();
|
| + virtual void ensurePrimaryContent();
|
| + bool hasFallbackContent() const;
|
| protected:
|
| HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);
|
|
|
| @@ -351,9 +354,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;
|
|
|
|
|