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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 WebAXRoleCanvas, | 83 WebAXRoleCanvas, |
84 WebAXRoleCell, | 84 WebAXRoleCell, |
85 WebAXRoleCheckBoxMenuItem, | 85 WebAXRoleCheckBoxMenuItem, |
86 WebAXRoleCheckBox, | 86 WebAXRoleCheckBox, |
87 WebAXRoleColorWell, | 87 WebAXRoleColorWell, |
88 WebAXRoleColumnHeader, | 88 WebAXRoleColumnHeader, |
89 WebAXRoleColumn, | 89 WebAXRoleColumn, |
90 WebAXRoleComboBox, | 90 WebAXRoleComboBox, |
91 WebAXRoleComplementary, | 91 WebAXRoleComplementary, |
92 WebAXRoleContentInfo, | 92 WebAXRoleContentInfo, |
93 WebAXRoleDate, | |
94 WebAXRoleDateTime, | |
95 WebAXRoleDefinition, | 93 WebAXRoleDefinition, |
96 WebAXRoleDescriptionListDetail, | 94 WebAXRoleDescriptionListDetail, |
97 WebAXRoleDescriptionList, | 95 WebAXRoleDescriptionList, |
98 WebAXRoleDescriptionListTerm, | 96 WebAXRoleDescriptionListTerm, |
99 WebAXRoleDetails, | 97 WebAXRoleDetails, |
100 WebAXRoleDialog, | 98 WebAXRoleDialog, |
101 WebAXRoleDirectory, | 99 WebAXRoleDirectory, |
102 WebAXRoleDisclosureTriangle, | 100 WebAXRoleDisclosureTriangle, |
103 WebAXRoleDiv, | 101 WebAXRoleDiv, |
104 WebAXRoleDocument, | 102 WebAXRoleDocument, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 WebAXRoleStatus, | 172 WebAXRoleStatus, |
175 WebAXRoleSystemWide, | 173 WebAXRoleSystemWide, |
176 WebAXRoleTabGroup, | 174 WebAXRoleTabGroup, |
177 WebAXRoleTabList, | 175 WebAXRoleTabList, |
178 WebAXRoleTabPanel, | 176 WebAXRoleTabPanel, |
179 WebAXRoleTab, | 177 WebAXRoleTab, |
180 WebAXRoleTableHeaderContainer, | 178 WebAXRoleTableHeaderContainer, |
181 WebAXRoleTable, | 179 WebAXRoleTable, |
182 WebAXRoleTextArea, | 180 WebAXRoleTextArea, |
183 WebAXRoleTextField, | 181 WebAXRoleTextField, |
184 WebAXRoleTime, | |
185 WebAXRoleTimer, | 182 WebAXRoleTimer, |
186 WebAXRoleToggleButton, | 183 WebAXRoleToggleButton, |
187 WebAXRoleToolbar, | 184 WebAXRoleToolbar, |
188 WebAXRoleTreeGrid, | 185 WebAXRoleTreeGrid, |
189 WebAXRoleTreeItem, | 186 WebAXRoleTreeItem, |
190 WebAXRoleTree, | 187 WebAXRoleTree, |
191 WebAXRoleUnknown, | 188 WebAXRoleUnknown, |
192 WebAXRoleUserInterfaceTooltip, | 189 WebAXRoleUserInterfaceTooltip, |
193 WebAXRoleValueIndicator, | 190 WebAXRoleValueIndicator, |
194 WebAXRoleWebArea, | 191 WebAXRoleWebArea, |
(...skipping 30 matching lines...) Expand all Loading... |
225 enum WebAXTextDirection { | 222 enum WebAXTextDirection { |
226 WebAXTextDirectionLR, | 223 WebAXTextDirectionLR, |
227 WebAXTextDirectionRL, | 224 WebAXTextDirectionRL, |
228 WebAXTextDirectionTB, | 225 WebAXTextDirectionTB, |
229 WebAXTextDirectionBT | 226 WebAXTextDirectionBT |
230 }; | 227 }; |
231 | 228 |
232 } // namespace blink | 229 } // namespace blink |
233 | 230 |
234 #endif | 231 #endif |
OLD | NEW |