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

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

Issue 825633002: TableCaptionElement is not exposed to accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing to latest Created 6 years 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 ec01d82bb5fef41a2482cce82c1c62f95b008115..d1a7e5a5720d1c704cb4ee45d77e2c4b5d50c9dc 100644
--- a/content/shell/renderer/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/renderer/test_runner/web_ax_object_proxy.cc
@@ -42,6 +42,8 @@ std::string RoleToString(blink::WebAXRole role)
return result.append("Button");
case blink::WebAXRoleCanvas:
return result.append("Canvas");
+ case blink::WebAXRoleCaption:
+ return result.append("Caption");
case blink::WebAXRoleCell:
return result.append("Cell");
case blink::WebAXRoleCheckBox:

Powered by Google App Engine
This is Rietveld 408576698