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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 1063383005: Chromium side Implementation to expose aria properties - setsize & posinset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating expectations on android Created 5 years, 8 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 | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/ax_node_data.cc
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
index b9a28419b423d04ece694d049320b5f6a16d7e3f..99ff3321bdd784c13970f4058333f6b3f64708e2 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -242,6 +242,12 @@ std::string AXNodeData::ToString() const {
break;
}
break;
+ case AX_ATTR_SET_SIZE:
+ result += " setsize=" + value;
+ break;
+ case AX_ATTR_POS_IN_SET:
+ result += " posinset=" + value;
+ break;
case AX_ATTR_INVALID_STATE:
switch (int_attributes[i].second) {
case AX_INVALID_STATE_FALSE:
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698