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

Unified Diff: third_party/WebKit/public/web/WebAXEnums.h

Issue 1952863003: Implemented the "aria-current" state on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed switch statements to handle NONE case. Created 4 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebAXEnums.h
diff --git a/third_party/WebKit/public/web/WebAXEnums.h b/third_party/WebKit/public/web/WebAXEnums.h
index ae54977d29ea3d7f53e0957f7a1e0d5642dcd1a9..8e387b4eb9c4dba1236bdabd1265d16dc6ecbffd 100644
--- a/third_party/WebKit/public/web/WebAXEnums.h
+++ b/third_party/WebKit/public/web/WebAXEnums.h
@@ -256,6 +256,17 @@ enum WebAXOrientation {
WebAXOrientationHorizontal,
};
+enum WebAXAriaCurrentState {
+ WebAXAriaCurrentStateUndefined = 0,
+ WebAXAriaCurrentStateFalse,
+ WebAXAriaCurrentStateTrue,
+ WebAXAriaCurrentStatePage,
+ WebAXAriaCurrentStateStep,
+ WebAXAriaCurrentStateLocation,
+ WebAXAriaCurrentStateDate,
+ WebAXAriaCurrentStateTime
+};
+
// Only used by HTML form controls and any other element that has
// an aria-invalid attribute specified.
enum WebAXInvalidState {
« no previous file with comments | « third_party/WebKit/Source/web/WebAXObject.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698