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

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

Issue 2833843005: Handling of different types of empty alt (Closed)
Patch Set: Temporary test fix until we figure out why returning null for name does not work Created 3 years, 8 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 7ef4798385a85fb8725e45c7a056492e32da8f51..6064acb243bdad2e6e9e81fe80d78107282ca6fe 100644
--- a/content/shell/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/test_runner/web_ax_object_proxy.cc
@@ -1628,6 +1628,8 @@ std::string WebAXObjectProxy::NameFrom() {
return "";
case blink::kWebAXNameFromAttribute:
return "attribute";
+ case blink::kWebAXNameFromExplicitlyEmptyAttribute:
+ return "explicitlyEmptyAttribute";
case blink::kWebAXNameFromCaption:
return "caption";
case blink::kWebAXNameFromContents:

Powered by Google App Engine
This is Rietveld 408576698