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

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: fixed typo Created 4 years, 10 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 b0560ed4fb65c069646751b8bda6090eb5621d40..5137cc7c26213ad046a18618433a11b082d04df9 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.h
@@ -95,6 +95,8 @@ public:
bool isImage() const;
+ bool isRadioButton() const;
tkent 2016/03/01 01:43:00 Please do not add this. Use |input->formControlTyp
tkent 2016/03/01 02:17:49 oops, formControlType() -> type()
je_julie(Not used) 2016/03/01 13:46:07 tkent and keishi, keishi left comment "third_party
tkent 2016/03/02 00:40:02 Please follow my comment. Keishi's comment meant
+
bool checked() const;
void setChecked(bool, TextFieldEventBehavior = DispatchNoEvent);
void dispatchChangeEventIfNeeded();
@@ -267,6 +269,8 @@ public:
bool isPlaceholderVisible() const override { return m_isPlaceholderVisible; }
void setPlaceholderVisibility(bool) override;
+ unsigned sizeOfRadioGroup() const;
+
protected:
HTMLInputElement(Document&, HTMLFormElement*, bool createdByParser);

Powered by Google App Engine
This is Rietveld 408576698