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

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

Issue 2539503003: ARIA 1.1: implementation for aria-col-* and aria-row-*. (Closed)
Patch Set: Fix bad rebase Created 3 years, 11 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/WebKit/public/web/WebAXObject.h ('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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 scroll_x_min, 351 scroll_x_min,
352 scroll_x_max, 352 scroll_x_max,
353 scroll_y, 353 scroll_y,
354 scroll_y_min, 354 scroll_y_min,
355 scroll_y_max, 355 scroll_y_max,
356 356
357 // Attributes for retrieving the endpoints of a selection. 357 // Attributes for retrieving the endpoints of a selection.
358 text_sel_start, 358 text_sel_start,
359 text_sel_end, 359 text_sel_end,
360 360
361 // aria_col* and aria_row* attributes
362 aria_col_count,
363 aria_col_index,
364 aria_row_count,
365 aria_row_index,
366
361 // Table attributes. 367 // Table attributes.
362 table_row_count, 368 table_row_count,
363 table_column_count, 369 table_column_count,
364 table_header_id, 370 table_header_id,
365 371
366 // Table row attributes. 372 // Table row attributes.
367 table_row_index, 373 table_row_index,
368 table_row_header_id, 374 table_row_header_id,
369 375
370 // Table column attributes. 376 // Table column attributes.
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 // First node is before the second one. 643 // First node is before the second one.
638 before, 644 before,
639 645
640 // Nodes are the same. 646 // Nodes are the same.
641 equal, 647 equal,
642 648
643 // First node is after the second one. 649 // First node is after the second one.
644 after 650 after
645 }; 651 };
646 }; 652 };
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebAXObject.h ('k') | ui/accessibility/ax_node_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698