From e286b5081d0198fb18dd3c4cbe364de424302936 Mon Sep 17 00:00:00 2001 From: "shreeram.k" Date: Mon, 5 Jan 2015 03:59:32 -0800 Subject: Expose html placeholder attribute as AXPlaceholder: on MAC. This CL depends on https://codereview.chromium.org/813473004/ BUG=440829,445929 Review URL: https://codereview.chromium.org/825613002 Cr-Commit-Position: refs/heads/master@{#309908} --- ui/accessibility/ax_node_data.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ui/accessibility/ax_node_data.cc') diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc index a14e4de..2f63c83 100644 --- a/ui/accessibility/ax_node_data.cc +++ b/ui/accessibility/ax_node_data.cc @@ -279,6 +279,9 @@ std::string AXNodeData::ToString() const { case AX_ATTR_CONTAINER_LIVE_STATUS: result += " container_live=" + value; break; + case AX_ATTR_PLACEHOLDER: + result += "placeholder" + value; + break; case AX_ATTR_ROLE: result += " role=" + value; break; -- cgit v1.1