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

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: Maps InputTime role to ROLE_SYSTEM_GROUPING 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 6f7ce27f997afeb8f80193c81f1d0a92cb0e327a..9a2f07eb8ebaacf74f25695b44846afe6b6c60e4 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