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

Unified Diff: public/web/WebAXEnums.h

Issue 679623002: Check whether aria-expanded attribute is defined (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update expanded API for AXMenuList Created 6 years, 2 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: public/web/WebAXEnums.h
diff --git a/public/web/WebAXEnums.h b/public/web/WebAXEnums.h
index be747f560947bc1e9f72d04720b0502a8440c113..31b72b8b85b91b2db32264f7461d6f4cb6bebb27 100644
--- a/public/web/WebAXEnums.h
+++ b/public/web/WebAXEnums.h
@@ -203,7 +203,6 @@ enum WebAXRole {
enum WebAXState {
WebAXStateBusy,
WebAXStateChecked,
- WebAXStateCollapsed,
WebAXStateEnabled,
WebAXStateExpanded,
WebAXStateFocusable,
@@ -233,6 +232,13 @@ enum WebAXTextDirection {
WebAXTextDirectionBT
};
+// values for aria-expanded attribute
dmazzoni 2014/10/29 15:20:52 Nit: comments should be a complete sentence - capi
+enum WebAXExpanded {
+ WebAXExpandedUndefined = 0,
+ WebAXExpandedCollapsed,
+ WebAXExpandedExpanded
+};
+
} // namespace blink
#endif

Powered by Google App Engine
This is Rietveld 408576698