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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 2539503003: ARIA 1.1: implementation for aria-col-* and aria-row-*. (Closed)
Patch Set: Created 4 years, 1 month 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: ui/accessibility/ax_node_data.cc
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
index ceb8bea59191bb9ee6350c32b2e6ccc4e6482c43..4157625858bb852a83d98afcb7e586745d847d7b 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -419,6 +419,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;

Powered by Google App Engine
This is Rietveld 408576698