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

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

Issue 2707263011: Test aria-pressed=mixed on windows (Closed)
Patch Set: git cl try Created 3 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 5814a350bef6532f15db90839b9f6bae97c814dc..3711efad638d35bd8f5c647bc8def430b2161cbd 100644
--- a/third_party/WebKit/public/web/WebAXEnums.h
+++ b/third_party/WebKit/public/web/WebAXEnums.h
@@ -206,7 +206,6 @@ enum WebAXRole {
// Accessibility states, used as a bitmask.
enum WebAXState {
kWebAXStateBusy,
- kWebAXStateChecked,
kWebAXStateEnabled,
kWebAXStateExpanded,
kWebAXStateFocusable,
@@ -218,7 +217,6 @@ enum WebAXState {
kWebAXStateMultiline,
kWebAXStateMultiselectable,
kWebAXStateOffscreen,
- kWebAXStatePressed,
kWebAXStateProtected,
kWebAXStateReadonly,
kWebAXStateRequired,
@@ -257,10 +255,10 @@ enum WebAXSortDirection {
kWebAXSortDirectionOther
};
-enum WebAXCheckedState {
- WebAXCheckedFalse = 0,
- WebAXCheckedTrue,
- WebAXCheckedMixed
+enum WebAXButtonState {
+ WebAXButtonStateOff = 0,
+ WebAXButtonStateOn,
+ WebAXButtonStateMixed
};
// Expanded State.
« 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