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

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

Issue 2713193003: Added a quick heuristic to determine which objects are the target of in-page links and stop ignorin… (Closed)
Patch Set: Fixed Android test. Created 3 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/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 893941c2fab34da86a831d52126b3c706ae50144..1d4afdf09266dc2531c93619d677d72f9cd01188 100644
--- a/content/shell/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/test_runner/web_ax_object_proxy.cc
@@ -34,6 +34,8 @@ std::string RoleToString(blink::WebAXRole role) {
return result.append("AlertDialog");
case blink::WebAXRoleAlert:
return result.append("Alert");
+ case blink::WebAXRoleAnchor:
+ return result.append("Anchor");
case blink::WebAXRoleAnnotation:
return result.append("Annotation");
case blink::WebAXRoleApplication:

Powered by Google App Engine
This is Rietveld 408576698