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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 scroll_x_min, | 327 scroll_x_min, |
328 scroll_x_max, | 328 scroll_x_max, |
329 scroll_y, | 329 scroll_y, |
330 scroll_y_min, | 330 scroll_y_min, |
331 scroll_y_max, | 331 scroll_y_max, |
332 | 332 |
333 // Attributes for retrieving the endpoints of a selection. | 333 // Attributes for retrieving the endpoints of a selection. |
334 text_sel_start, | 334 text_sel_start, |
335 text_sel_end, | 335 text_sel_end, |
336 | 336 |
| 337 // aria_col* and aria_row* attributes |
| 338 aria_col_count, |
| 339 aria_col_index, |
| 340 aria_row_count, |
| 341 aria_row_index, |
| 342 |
337 // Table attributes. | 343 // Table attributes. |
338 table_row_count, | 344 table_row_count, |
339 table_column_count, | 345 table_column_count, |
340 table_header_id, | 346 table_header_id, |
341 | 347 |
342 // Table row attributes. | 348 // Table row attributes. |
343 table_row_index, | 349 table_row_index, |
344 table_row_header_id, | 350 table_row_header_id, |
345 | 351 |
346 // Table column attributes. | 352 // Table column attributes. |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 // First node is before the second one. | 614 // First node is before the second one. |
609 before, | 615 before, |
610 | 616 |
611 // Nodes are the same. | 617 // Nodes are the same. |
612 equal, | 618 equal, |
613 | 619 |
614 // First node is after the second one. | 620 // First node is after the second one. |
615 after | 621 after |
616 }; | 622 }; |
617 }; | 623 }; |
OLD | NEW |