OLD | NEW |
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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 scroll_x_min, | 332 scroll_x_min, |
333 scroll_x_max, | 333 scroll_x_max, |
334 scroll_y, | 334 scroll_y, |
335 scroll_y_min, | 335 scroll_y_min, |
336 scroll_y_max, | 336 scroll_y_max, |
337 | 337 |
338 // Attributes for retrieving the endpoints of a selection. | 338 // Attributes for retrieving the endpoints of a selection. |
339 text_sel_start, | 339 text_sel_start, |
340 text_sel_end, | 340 text_sel_end, |
341 | 341 |
| 342 // aria_col* and aria_row* attributes |
| 343 aria_col_count, |
| 344 aria_col_index, |
| 345 aria_row_count, |
| 346 aria_row_index, |
| 347 |
342 // Table attributes. | 348 // Table attributes. |
343 table_row_count, | 349 table_row_count, |
344 table_column_count, | 350 table_column_count, |
345 table_header_id, | 351 table_header_id, |
346 | 352 |
347 // Table row attributes. | 353 // Table row attributes. |
348 table_row_index, | 354 table_row_index, |
349 table_row_header_id, | 355 table_row_header_id, |
350 | 356 |
351 // Table column attributes. | 357 // Table column attributes. |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 // First node is before the second one. | 624 // First node is before the second one. |
619 before, | 625 before, |
620 | 626 |
621 // Nodes are the same. | 627 // Nodes are the same. |
622 equal, | 628 equal, |
623 | 629 |
624 // First node is after the second one. | 630 // First node is after the second one. |
625 after | 631 after |
626 }; | 632 }; |
627 }; | 633 }; |
OLD | NEW |