| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 // a table cell is a child of a row, and an 'indirect' child of a | 436 // a table cell is a child of a row, and an 'indirect' child of a |
| 437 // column. | 437 // column. |
| 438 indirect_child_ids, | 438 indirect_child_ids, |
| 439 | 439 |
| 440 // Relationships between this element and other elements. | 440 // Relationships between this element and other elements. |
| 441 controls_ids, | 441 controls_ids, |
| 442 describedby_ids, | 442 describedby_ids, |
| 443 flowto_ids, | 443 flowto_ids, |
| 444 labelledby_ids, | 444 labelledby_ids, |
| 445 | 445 |
| 446 // For static text. Character indices where line breaks occur. Note that |
| 447 // this attribute is only available on Chrome OS and will be deprecated |
| 448 // soon. |
| 449 line_breaks, |
| 450 |
| 446 // For static text. These int lists must be the same size; they represent | 451 // For static text. These int lists must be the same size; they represent |
| 447 // the start and end character offset of each marker. Examples of markers | 452 // the start and end character offset of each marker. Examples of markers |
| 448 // include spelling and grammar errors, and find-in-page matches. | 453 // include spelling and grammar errors, and find-in-page matches. |
| 449 marker_types, | 454 marker_types, |
| 450 marker_starts, | 455 marker_starts, |
| 451 marker_ends, | 456 marker_ends, |
| 452 | 457 |
| 453 // For a table, the cell ids in row-major order, with duplicate entries | 458 // For a table, the cell ids in row-major order, with duplicate entries |
| 454 // when there's a rowspan or colspan, and with -1 for missing cells. | 459 // when there's a rowspan or colspan, and with -1 for missing cells. |
| 455 // There are always exactly rows * columns entries. | 460 // There are always exactly rows * columns entries. |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 // First node is before the second one. | 605 // First node is before the second one. |
| 601 before, | 606 before, |
| 602 | 607 |
| 603 // Nodes are the same. | 608 // Nodes are the same. |
| 604 equal, | 609 equal, |
| 605 | 610 |
| 606 // First node is after the second one. | 611 // First node is after the second one. |
| 607 after | 612 after |
| 608 }; | 613 }; |
| 609 }; | 614 }; |
| OLD | NEW |