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

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

Issue 874893003: Handles aria-dropeffect after getting its value from blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 5 years, 10 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 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 break; 273 break;
274 case AX_ATTR_AUTO_COMPLETE: 274 case AX_ATTR_AUTO_COMPLETE:
275 result += " autocomplete=" + value; 275 result += " autocomplete=" + value;
276 break; 276 break;
277 case AX_ATTR_DESCRIPTION: 277 case AX_ATTR_DESCRIPTION:
278 result += " description=" + value; 278 result += " description=" + value;
279 break; 279 break;
280 case AX_ATTR_DISPLAY: 280 case AX_ATTR_DISPLAY:
281 result += " display=" + value; 281 result += " display=" + value;
282 break; 282 break;
283 case AX_ATTR_DROPEFFECT:
284 result += " dropeffect=" + value;
285 break;
283 case AX_ATTR_HELP: 286 case AX_ATTR_HELP:
284 result += " help=" + value; 287 result += " help=" + value;
285 break; 288 break;
286 case AX_ATTR_HTML_TAG: 289 case AX_ATTR_HTML_TAG:
287 result += " html_tag=" + value; 290 result += " html_tag=" + value;
288 break; 291 break;
289 case AX_ATTR_ARIA_INVALID_VALUE: 292 case AX_ATTR_ARIA_INVALID_VALUE:
290 result += " aria_invalid_value=" + value; 293 result += " aria_invalid_value=" + value;
291 break; 294 break;
292 case AX_ATTR_LIVE_RELEVANT: 295 case AX_ATTR_LIVE_RELEVANT:
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 } 438 }
436 } 439 }
437 440
438 if (!child_ids.empty()) 441 if (!child_ids.empty())
439 result += " child_ids=" + IntVectorToString(child_ids); 442 result += " child_ids=" + IntVectorToString(child_ids);
440 443
441 return result; 444 return result;
442 } 445 }
443 446
444 } // namespace ui 447 } // 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