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

Unified Diff: ui/accessibility/ax_node_data.cc

Issue 2141013004: Mac a11y: Add Help, TopLevelUIElement, and Window accessibility attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add null check for NVA::GetTopLevelWidget(). Created 4 years, 5 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: ui/accessibility/ax_node_data.cc
diff --git a/ui/accessibility/ax_node_data.cc b/ui/accessibility/ax_node_data.cc
index 0191bc661d65df8f49a07a1cce9b35d77665f8ad..9ec2aa7dc8679826eebbf2299c55efb53151356f 100644
--- a/ui/accessibility/ax_node_data.cc
+++ b/ui/accessibility/ax_node_data.cc
@@ -570,6 +570,9 @@ std::string AXNodeData::ToString() const {
case AX_ATTR_FONT_FAMILY:
result += " font-family=" + value;
break;
+ case AX_ATTR_HELP_TEXT:
+ result += " help_text=" + value;
+ break;
case AX_ATTR_HTML_TAG:
result += " html_tag=" + value;
break;

Powered by Google App Engine
This is Rietveld 408576698