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

Unified Diff: content/shell/renderer/test_runner/web_ax_object_proxy.cc

Issue 1030333002: Chromium side Implementation of new roles added in ARIA 1.1 draft. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updating failed expectations Created 5 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/shell/renderer/test_runner/web_ax_object_proxy.cc
diff --git a/content/shell/renderer/test_runner/web_ax_object_proxy.cc b/content/shell/renderer/test_runner/web_ax_object_proxy.cc
index 4d886c60591b74b54384fe6d87f4d6a9f5f63ed6..b38dbb801e63516c473a69db1efdcf47a9668a31 100644
--- a/content/shell/renderer/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/renderer/test_runner/web_ax_object_proxy.cc
@@ -194,6 +194,8 @@ std::string RoleToString(blink::WebAXRole role)
return result.append("SeamlessWebArea");
case blink::WebAXRoleSearch:
return result.append("Search");
+ case blink::WebAXRoleSearchBox:
+ return result.append("SearchBox");
case blink::WebAXRoleSlider:
return result.append("Slider");
case blink::WebAXRoleSliderThumb:
@@ -208,6 +210,8 @@ std::string RoleToString(blink::WebAXRole role)
return result.append("StaticText");
case blink::WebAXRoleStatus:
return result.append("Status");
+ case blink::WebAXRoleSwitch:
+ return result.append("Switch");
case blink::WebAXRoleTabGroup:
return result.append("TabGroup");
case blink::WebAXRoleTabList:
« no previous file with comments | « content/renderer/accessibility/blink_ax_enum_conversion.cc ('k') | content/test/data/accessibility/aria/aria-searchbox.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698