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

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

Issue 1628283002: posinset and setsize for input type, radio, exposed in AX tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and Update code Created 4 years, 11 months 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: third_party/WebKit/Source/core/html/HTMLInputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.h b/third_party/WebKit/Source/core/html/HTMLInputElement.h
index f10e37ac5b88afd2e8a51fb87ecf40385bf45735..453a646547b466f343e87259ed9bc75022bbf85e 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
@@ -266,6 +266,10 @@ public:
bool isPlaceholderVisible() const override { return m_isPlaceholderVisible; }
void setPlaceholderVisibility(bool) override;
+ void setPositionInRadioGroup(unsigned position) { m_positonInRadio = position; }
+ unsigned positionInRadioGroup();
+ unsigned sizeOfRadioGroup();
+
protected:
HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);
@@ -376,6 +380,7 @@ private:
int m_size;
int m_maxLength;
int m_minLength;
+ unsigned m_positonInRadio;
short m_maxResults;
unsigned m_isChecked : 1;
unsigned m_reflectsCheckedAttribute : 1;

Powered by Google App Engine
This is Rietveld 408576698