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

Unified Diff: components/test_runner/web_ax_object_proxy.cc

Issue 1595063002: Adds AX role for abbr tag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: components/test_runner/web_ax_object_proxy.cc
diff --git a/components/test_runner/web_ax_object_proxy.cc b/components/test_runner/web_ax_object_proxy.cc
index 8c71884bb48b2c83b388c3fb303389fe5a842c6b..347da315b55b1a048ba680c8452958bcbe7e1c56 100644
--- a/components/test_runner/web_ax_object_proxy.cc
+++ b/components/test_runner/web_ax_object_proxy.cc
@@ -25,6 +25,8 @@ std::string RoleToString(blink::WebAXRole role)
{
std::string result = "AXRole: AX";
switch (role) {
+ case blink::WebAXRoleAbbr:
+ return result.append("Abbr");
case blink::WebAXRoleAlertDialog:
return result.append("AlertDialog");
case blink::WebAXRoleAlert:
« no previous file with comments | « chrome/common/extensions/api/automation.idl ('k') | content/browser/accessibility/browser_accessibility_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698