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

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

Issue 2886963004: Fixes for tree item level, setsize and posinset (Closed)
Patch Set: Fix tests Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/LayoutTests/accessibility/aria-tree.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/accessibility/AXObjectImpl.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.cpp b/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.cpp
index c425d319cef09becd3e2ef032be455727988e426..df71ee37d8e1520586006f4d7523a9434eb9bf80 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectImpl.cpp
@@ -1135,7 +1135,7 @@ bool AXObjectImpl::SupportsRangeValue() const {
}
bool AXObjectImpl::SupportsSetSizeAndPosInSet() const {
- AXObjectImpl* parent = ParentObject();
+ AXObjectImpl* parent = ParentObjectUnignored();
if (!parent)
return false;
@@ -1148,7 +1148,7 @@ bool AXObjectImpl::SupportsSetSizeAndPosInSet() const {
(role == kRadioButtonRole) ||
(role == kTabRole && parent_role == kTabListRole) ||
(role == kTreeItemRole && parent_role == kTreeRole) ||
- (role == kTreeItemRole && parent_role == kGroupRole)) {
+ (role == kTreeItemRole && parent_role == kTreeItemRole)) {
return true;
}
« no previous file with comments | « third_party/WebKit/LayoutTests/accessibility/aria-tree.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698