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

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

Issue 2867073003: Name calculation should not include nameFrom:author descendants. (Closed)
Patch Set: Rebase Created 3 years, 7 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/test_runner/web_ax_object_proxy.cc
diff --git a/content/shell/test_runner/web_ax_object_proxy.cc b/content/shell/test_runner/web_ax_object_proxy.cc
index c651f7ae667d4333a92cfc2c375432ce4dc2c80a..150f59e6b1b930a45b38f391272112a5dfd7369f 100644
--- a/content/shell/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/test_runner/web_ax_object_proxy.cc
@@ -92,8 +92,6 @@ std::string RoleToString(blink::WebAXRole role) {
return result.append("Directory");
case blink::kWebAXRoleDisclosureTriangle:
return result.append("DisclosureTriangle");
- case blink::kWebAXRoleDiv:
- return result.append("Div");
case blink::kWebAXRoleDocument:
return result.append("Document");
case blink::kWebAXRoleEmbeddedObject:
@@ -106,6 +104,8 @@ std::string RoleToString(blink::WebAXRole role) {
return result.append("Footer");
case blink::kWebAXRoleForm:
return result.append("Form");
+ case blink::kWebAXRoleGenericContainer:
+ return result.append("GenericContainer");
case blink::kWebAXRoleGrid:
return result.append("Grid");
case blink::kWebAXRoleGroup:

Powered by Google App Engine
This is Rietveld 408576698