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

Side by Side Diff: ui/accessibility/ax_node_data.cc

Issue 785943002: ARIA state/property aria-autocomplete should expose IA2_STATE_SUPPORTS_AUTOCOMPLETION. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating expectations Created 6 years 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 unified diff | Download patch
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/accessibility/ax_node_data.h" 5 #include "ui/accessibility/ax_node_data.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 break; 245 break;
246 case AX_ATTR_DOC_DOCTYPE: 246 case AX_ATTR_DOC_DOCTYPE:
247 result += " doc_doctype=" + value; 247 result += " doc_doctype=" + value;
248 break; 248 break;
249 case AX_ATTR_ACCESS_KEY: 249 case AX_ATTR_ACCESS_KEY:
250 result += " access_key=" + value; 250 result += " access_key=" + value;
251 break; 251 break;
252 case AX_ATTR_ACTION: 252 case AX_ATTR_ACTION:
253 result += " action=" + value; 253 result += " action=" + value;
254 break; 254 break;
255 case AX_ATTR_AUTO_COMPLETE:
256 result += " autocomplete=" + value;
257 break;
255 case AX_ATTR_DESCRIPTION: 258 case AX_ATTR_DESCRIPTION:
256 result += " description=" + value; 259 result += " description=" + value;
257 break; 260 break;
258 case AX_ATTR_DISPLAY: 261 case AX_ATTR_DISPLAY:
259 result += " display=" + value; 262 result += " display=" + value;
260 break; 263 break;
261 case AX_ATTR_HELP: 264 case AX_ATTR_HELP:
262 result += " help=" + value; 265 result += " help=" + value;
263 break; 266 break;
264 case AX_ATTR_HTML_TAG: 267 case AX_ATTR_HTML_TAG:
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 } 407 }
405 } 408 }
406 409
407 if (!child_ids.empty()) 410 if (!child_ids.empty())
408 result += " child_ids=" + IntVectorToString(child_ids); 411 result += " child_ids=" + IntVectorToString(child_ids);
409 412
410 return result; 413 return result;
411 } 414 }
412 415
413 } // namespace ui 416 } // namespace ui
OLDNEW
« no previous file with comments | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698