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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 2539503003: ARIA 1.1: implementation for aria-col-* and aria-row-*. (Closed)
Patch Set: Fix Mac 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
Index: ui/accessibility/ax_node_data.cc
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
index 5d14645b231bf2e22f8aa83f1a820363793cd4c6..5157bc5b362cc95351efd32d0e59dab65f01aaa3 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -421,6 +421,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