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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 2539503003: ARIA 1.1: implementation for aria-col-* and aria-row-*. (Closed)
Patch Set: Fix bad rebase Created 4 years 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') | ui/accessibility/ax_tree_combiner.cc » ('j') | 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 5a7d6c70e631b078fab4df4748f67e0560623f09..8d25bd001ee3d0129a83f20f7a2366661de62b82 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -428,6 +428,18 @@ std::string AXNodeData::ToString() const {
case AX_ATTR_TEXT_SEL_END:
result += " sel_end=" + value;
break;
+ case AX_ATTR_ARIA_COL_COUNT:
+ result += " aria_col_count=" + value;
+ break;
+ case AX_ATTR_ARIA_COL_INDEX:
+ result += " aria_col_index=" + value;
+ break;
+ case AX_ATTR_ARIA_ROW_COUNT:
+ result += " aria_row_count=" + value;
+ break;
+ case AX_ATTR_ARIA_ROW_INDEX:
+ result += " aria_row_index=" + value;
+ break;
case AX_ATTR_TABLE_ROW_COUNT:
result += " rows=" + value;
break;
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | ui/accessibility/ax_tree_combiner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698