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

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

Issue 1132963002: Handles conversion rule for TimeRole and updates InputTimeRole. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/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 bf77fe13344fe59cea9621d87001b40e74a30c4b..be858bb97d47a068d7705ab90ad2be0697ffec1c 100644
--- a/content/shell/renderer/test_runner/web_ax_object_proxy.cc
+++ b/content/shell/renderer/test_runner/web_ax_object_proxy.cc
@@ -110,6 +110,8 @@ std::string RoleToString(blink::WebAXRole role)
return result.append("Image");
case blink::WebAXRoleInlineTextBox:
return result.append("InlineTextBox");
+ case blink::WebAXRoleInputTime:
+ return result.append("InputTime");
case blink::WebAXRoleLabel:
return result.append("Label");
case blink::WebAXRoleLegend:

Powered by Google App Engine
This is Rietveld 408576698