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

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

Issue 2799443002: Implemented ARIA colindex, rowindex, colcount and rowcount for Chromevox. (Closed)
Patch Set: Fixed Blink test.# with '#' will be ignored, and an empty message aborts the commit. 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
« no previous file with comments | « third_party/closure_compiler/externs/automation.js ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 scroll_x_max, 358 scroll_x_max,
359 scroll_y, 359 scroll_y,
360 scroll_y_min, 360 scroll_y_min,
361 scroll_y_max, 361 scroll_y_max,
362 362
363 // Attributes for retrieving the endpoints of a selection. 363 // Attributes for retrieving the endpoints of a selection.
364 text_sel_start, 364 text_sel_start,
365 text_sel_end, 365 text_sel_end,
366 366
367 // aria_col* and aria_row* attributes 367 // aria_col* and aria_row* attributes
368 aria_col_count, 368 aria_column_count,
369 aria_col_index, 369 aria_cell_column_index,
370 aria_row_count, 370 aria_row_count,
371 aria_row_index, 371 aria_cell_row_index,
372 372
373 // Table attributes. 373 // Table attributes.
374 table_row_count, 374 table_row_count,
375 table_column_count, 375 table_column_count,
376 table_header_id, 376 table_header_id,
377 377
378 // Table row attributes. 378 // Table row attributes.
379 table_row_index, 379 table_row_index,
380 table_row_header_id, 380 table_row_header_id,
381 381
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 // First node is before the second one. 661 // First node is before the second one.
662 before, 662 before,
663 663
664 // Nodes are the same. 664 // Nodes are the same.
665 equal, 665 equal,
666 666
667 // First node is after the second one. 667 // First node is after the second one.
668 after 668 after
669 }; 669 };
670 }; 670 };
OLDNEW
« no previous file with comments | « third_party/closure_compiler/externs/automation.js ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698