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

Side by Side Diff: ui/accessibility/ax_enums.idl

Issue 2799443002: Implemented ARIA colindex, rowindex, colcount and rowcount for Chromevox. (Closed)
Patch Set: Fixed automation test. Created 3 years, 8 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // TODO(nektar): Migrate entire file to Mojoq. 5 // TODO(nektar): Migrate entire file to Mojoq.
6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h 6 // These should be kept in sync with third_party/WebKit/public/web/WebAXEnums.h
7 // until the Chromium and Blink trees are merged. 7 // until the Chromium and Blink trees are merged.
8 [camel_case_enum_to_string=true] namespace ui { 8 [camel_case_enum_to_string=true] namespace ui {
9 9
10 // For new entries to the following four enums, also add to 10 // For new entries to the following four enums, also add to
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 scroll_x_max, 359 scroll_x_max,
360 scroll_y, 360 scroll_y,
361 scroll_y_min, 361 scroll_y_min,
362 scroll_y_max, 362 scroll_y_max,
363 363
364 // Attributes for retrieving the endpoints of a selection. 364 // Attributes for retrieving the endpoints of a selection.
365 text_sel_start, 365 text_sel_start,
366 text_sel_end, 366 text_sel_end,
367 367
368 // aria_col* and aria_row* attributes 368 // aria_col* and aria_row* attributes
369 aria_col_count, 369 aria_column_count,
370 aria_col_index, 370 aria_cell_column_index,
371 aria_row_count, 371 aria_row_count,
372 aria_row_index, 372 aria_cell_row_index,
373 373
374 // Table attributes. 374 // Table attributes.
375 table_row_count, 375 table_row_count,
376 table_column_count, 376 table_column_count,
377 table_header_id, 377 table_header_id,
378 378
379 // Table row attributes. 379 // Table row attributes.
380 table_row_index, 380 table_row_index,
381 table_row_header_id, 381 table_row_header_id,
382 382
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 // First node is before the second one. 657 // First node is before the second one.
658 before, 658 before,
659 659
660 // Nodes are the same. 660 // Nodes are the same.
661 equal, 661 equal,
662 662
663 // First node is after the second one. 663 // First node is after the second one.
664 after 664 after
665 }; 665 };
666 }; 666 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698