OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 WebAXRoleGroup, | 104 WebAXRoleGroup, |
105 WebAXRoleGrowArea, | 105 WebAXRoleGrowArea, |
106 WebAXRoleHeading, | 106 WebAXRoleHeading, |
107 WebAXRoleHelpTag, | 107 WebAXRoleHelpTag, |
108 WebAXRoleHorizontalRule, | 108 WebAXRoleHorizontalRule, |
109 WebAXRoleIgnored, | 109 WebAXRoleIgnored, |
110 WebAXRoleImageMapLink, | 110 WebAXRoleImageMapLink, |
111 WebAXRoleImageMap, | 111 WebAXRoleImageMap, |
112 WebAXRoleImage, | 112 WebAXRoleImage, |
113 WebAXRoleIncrementor, | 113 WebAXRoleIncrementor, |
| 114 WebAXRoleInlineTextBox, |
114 WebAXRoleLabel, | 115 WebAXRoleLabel, |
115 WebAXRoleLegend, | 116 WebAXRoleLegend, |
116 WebAXRoleLink, | 117 WebAXRoleLink, |
117 WebAXRoleListBoxOption, | 118 WebAXRoleListBoxOption, |
118 WebAXRoleListBox, | 119 WebAXRoleListBox, |
119 WebAXRoleListItem, | 120 WebAXRoleListItem, |
120 WebAXRoleListMarker, | 121 WebAXRoleListMarker, |
121 WebAXRoleList, | 122 WebAXRoleList, |
122 WebAXRoleLog, | 123 WebAXRoleLog, |
123 WebAXRoleMain, | 124 WebAXRoleMain, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 WebAXStatePressed, | 202 WebAXStatePressed, |
202 WebAXStateProtected, | 203 WebAXStateProtected, |
203 WebAXStateReadonly, | 204 WebAXStateReadonly, |
204 WebAXStateRequired, | 205 WebAXStateRequired, |
205 WebAXStateSelectable, | 206 WebAXStateSelectable, |
206 WebAXStateSelected, | 207 WebAXStateSelected, |
207 WebAXStateVertical, | 208 WebAXStateVertical, |
208 WebAXStateVisited, | 209 WebAXStateVisited, |
209 }; | 210 }; |
210 | 211 |
| 212 // Text direction, only used for role=WebAXRoleInlineTextBox. |
| 213 enum WebAXTextDirection { |
| 214 WebAXTextDirectionLR, |
| 215 WebAXTextDirectionRL, |
| 216 WebAXTextDirectionTB, |
| 217 WebAXTextDirectionBT |
| 218 }; |
| 219 |
211 } // namespace WebKit | 220 } // namespace WebKit |
212 | 221 |
213 #endif | 222 #endif |
OLD | NEW |