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