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

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

Issue 692643005: ARIA state/property(aria-relevant,aria-busy) are not exposed correctly on MAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 break; 330 break;
331 case AX_ATTR_LIVE_ATOMIC: 331 case AX_ATTR_LIVE_ATOMIC:
332 result += " atomic=" + value; 332 result += " atomic=" + value;
333 break; 333 break;
334 case AX_ATTR_LIVE_BUSY: 334 case AX_ATTR_LIVE_BUSY:
335 result += " busy=" + value; 335 result += " busy=" + value;
336 break; 336 break;
337 case AX_ATTR_CONTAINER_LIVE_ATOMIC: 337 case AX_ATTR_CONTAINER_LIVE_ATOMIC:
338 result += " container_atomic=" + value; 338 result += " container_atomic=" + value;
339 break; 339 break;
340 case AX_ATTR_CONTAINER_LIVE_BUSY:
341 result += " container_busy=" + value;
342 break;
343 case AX_ATTR_ARIA_READONLY: 340 case AX_ATTR_ARIA_READONLY:
344 result += " aria_readonly=" + value; 341 result += " aria_readonly=" + value;
345 break; 342 break;
346 case AX_ATTR_CAN_SET_VALUE: 343 case AX_ATTR_CAN_SET_VALUE:
347 result += " can_set_value=" + value; 344 result += " can_set_value=" + value;
348 break; 345 break;
349 case AX_ATTR_UPDATE_LOCATION_ONLY: 346 case AX_ATTR_UPDATE_LOCATION_ONLY:
350 result += " update_location_only=" + value; 347 result += " update_location_only=" + value;
351 break; 348 break;
352 case AX_ATTR_CANVAS_HAS_FALLBACK: 349 case AX_ATTR_CANVAS_HAS_FALLBACK:
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 } 401 }
405 } 402 }
406 403
407 if (!child_ids.empty()) 404 if (!child_ids.empty())
408 result += " child_ids=" + IntVectorToString(child_ids); 405 result += " child_ids=" + IntVectorToString(child_ids);
409 406
410 return result; 407 return result;
411 } 408 }
412 409
413 } // namespace ui 410 } // namespace ui
OLDNEW
« content/renderer/accessibility/blink_ax_tree_source.cc ('K') | « ui/accessibility/ax_enums.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698