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

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: 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
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..5ef96628c878ce0e8cc81ebc015212bfd7ea6e42 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 WebAXAriaCurrent {
+ WebAXAriaCurrentUndefined = 0,
+ WebAXAriaCurrentFalse,
+ WebAXAriaCurrentTrue,
+ WebAXAriaCurrentPage,
+ WebAXAriaCurrentStep,
+ WebAXAriaCurrentLocation,
+ WebAXAriaCurrentDate,
+ WebAXAriaCurrentTime
+};
+
// Only used by HTML form controls and any other element that has
// an aria-invalid attribute specified.
enum WebAXInvalidState {

Powered by Google App Engine
This is Rietveld 408576698