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

Unified Diff: third_party/WebKit/Source/web/AssertMatchingEnums.cpp

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/Source/web/AssertMatchingEnums.cpp
diff --git a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
index e288e3c27b99408e1b66dddbe2d86ac45cdb6b71..f8b37ed50b980789d3f3710411702a859ea15523 100644
--- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
+++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
@@ -340,6 +340,15 @@ STATIC_ASSERT_ENUM(WebAXOrientationUndefined, AccessibilityOrientationUndefined)
STATIC_ASSERT_ENUM(WebAXOrientationVertical, AccessibilityOrientationVertical);
STATIC_ASSERT_ENUM(WebAXOrientationHorizontal, AccessibilityOrientationHorizontal);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentUndefined, AriaCurrentUndefined);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentFalse, AriaCurrentFalse);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentTrue, AriaCurrentTrue);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentPage, AriaCurrentPage);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentStep, AriaCurrentStep);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentLocation, AriaCurrentLocation);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentDate, AriaCurrentDate);
+STATIC_ASSERT_ENUM(WebAXAriaCurrentTime, AriaCurrentTime);
+
STATIC_ASSERT_ENUM(WebAXInvalidStateUndefined, InvalidStateUndefined);
STATIC_ASSERT_ENUM(WebAXInvalidStateFalse, InvalidStateFalse);
STATIC_ASSERT_ENUM(WebAXInvalidStateTrue, InvalidStateTrue);

Powered by Google App Engine
This is Rietveld 408576698