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

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

Issue 599363002: Add AX role conversions for EmbedObject, Figcaption and Figure for test_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bb0c31a5077c32d0ad5078fd3acacf63c32c323d..b8386637b6d80ced58ef90692cbce5e7a28f34b9 100644
--- a/content/shell/renderer/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/renderer/test_runner/web_ax_object_proxy.cc
@@ -78,6 +78,12 @@ std::string RoleToString(blink::WebAXRole role)
return result.append("Drawer");
case blink::WebAXRoleEditableText:
return result.append("EditableText");
+ case blink::WebAXRoleEmbeddedObject:
+ return result.append("EmbeddedObject");
+ case blink::WebAXRoleFigcaption:
+ return result.append("Figcaption");
+ case blink::WebAXRoleFigure:
+ return result.append("Figure");
case blink::WebAXRoleFooter:
return result.append("Footer");
case blink::WebAXRoleForm:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698