Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(767)

Unified Diff: Source/core/html/HTMLInputElement.h

Issue 481753002: Use Shadow DOM to display fallback content for images (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698