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

Unified Diff: ui/accessibility/ax_enums.idl

Issue 744843002: Added the aria-sort state to the accessibility tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Separated ARIA grid and HTML table tests. Created 5 years, 11 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
Index: ui/accessibility/ax_enums.idl
diff --git a/ui/accessibility/ax_enums.idl b/ui/accessibility/ax_enums.idl
index b0d926a47af8f7ab3b1afbeecceb518fc6dac8cb..1ab12767b3beb4ae494982be567549c214299efd 100644
--- a/ui/accessibility/ax_enums.idl
+++ b/ui/accessibility/ax_enums.idl
@@ -279,6 +279,7 @@
table_cell_column_span,
table_cell_row_index,
table_cell_row_span,
+ sort_direction,
// Tree control attributes.
hierarchical_level,
@@ -403,4 +404,11 @@
invalid_state_other
};
+ [cpp_enum_prefix_override="ax"] enum AXSortDirection {
+ sort_direction_unsorted,
+ sort_direction_ascending,
+ sort_direction_descending,
+ sort_direction_other
+ };
+
};

Powered by Google App Engine
This is Rietveld 408576698