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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObject.cpp

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: removed isRadiobutton() 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/modules/accessibility/AXObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
index 2cf10aa73af8256182c4428d43172db0ff29b07a..09564f139c1998b5f346920b88e80278d6c8b63c 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
@@ -1013,7 +1013,7 @@ bool AXObject::supportsSetSizeAndPosInSet() const
if ((role == ListBoxOptionRole && parentRole == ListBoxRole)
|| (role == ListItemRole && parentRole == ListRole)
|| (role == MenuItemRole && parentRole == MenuRole)
- || (role == RadioButtonRole && parentRole == RadioGroupRole)
+ || (role == RadioButtonRole)
|| (role == TabRole && parentRole == TabListRole)
|| (role == TreeItemRole && parentRole == TreeRole))
return true;

Powered by Google App Engine
This is Rietveld 408576698