Commit aa536251 authored by je_julie.kim's avatar je_julie.kim Committed by Commit bot

Add conversions for EmbedObject, Figcaption and Figure

at Web_ax_object_proxy.cc It's for Blink test_runner.

BUG=N/A

Review URL: https://codereview.chromium.org/599363002

Cr-Commit-Position: refs/heads/master@{#296732}
parent a85fe6cf
......@@ -78,6 +78,12 @@ std::string RoleToString(blink::WebAXRole role)
return result.append("Drawer");
case blink::WebAXRoleEditableText:
return result.append("EditableText");
case blink::WebAXRoleEmbeddedObject:
return result.append("EmbeddedObject");
case blink::WebAXRoleFigcaption:
return result.append("Figcaption");
case blink::WebAXRoleFigure:
return result.append("Figure");
case blink::WebAXRoleFooter:
return result.append("Footer");
case blink::WebAXRoleForm:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment