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

Unified Diff: content/child/blink_platform_impl.cc

Issue 1809573003: Fix support for accessible action verbs and performing the default action. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix two tests Created 4 years, 9 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: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 24e42fdce41d0302325376dd7ddbd405a00aed00..68d0be5a19b4bc5615029bece750a3d706ef55d1 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -107,6 +107,8 @@ static int ToMessageID(WebLocalizedString::Name name) {
return IDS_AX_DATE_TIME_FIELD_EMPTY_VALUE_TEXT;
case WebLocalizedString::AXDayOfMonthFieldText:
return IDS_AX_DAY_OF_MONTH_FIELD_TEXT;
+ case WebLocalizedString::AXDefaultActionVerb:
+ return IDS_AX_DEFAULT_ACTION_VERB;
case WebLocalizedString::AXHeadingText:
return IDS_AX_ROLE_HEADING;
case WebLocalizedString::AXHourFieldText:
@@ -197,6 +199,8 @@ static int ToMessageID(WebLocalizedString::Name name) {
return IDS_AX_MINUTE_FIELD_TEXT;
case WebLocalizedString::AXMonthFieldText:
return IDS_AX_MONTH_FIELD_TEXT;
+ case WebLocalizedString::AXPopUpButtonActionVerb:
+ return IDS_AX_POP_UP_BUTTON_ACTION_VERB;
case WebLocalizedString::AXRadioButtonActionVerb:
return IDS_AX_RADIO_BUTTON_ACTION_VERB;
case WebLocalizedString::AXSecondFieldText:

Powered by Google App Engine
This is Rietveld 408576698