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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 WebAXRoleDrawer, | 100 WebAXRoleDrawer, |
101 WebAXRoleEditableText, | 101 WebAXRoleEditableText, |
102 WebAXRoleFooter, | 102 WebAXRoleFooter, |
103 WebAXRoleForm, | 103 WebAXRoleForm, |
104 WebAXRoleGrid, | 104 WebAXRoleGrid, |
105 WebAXRoleGroup, | 105 WebAXRoleGroup, |
106 WebAXRoleGrowArea, | 106 WebAXRoleGrowArea, |
107 WebAXRoleHeading, | 107 WebAXRoleHeading, |
108 WebAXRoleHelpTag, | 108 WebAXRoleHelpTag, |
109 WebAXRoleHorizontalRule, | 109 WebAXRoleHorizontalRule, |
| 110 WebAXRoleIframe, |
110 WebAXRoleIgnored, | 111 WebAXRoleIgnored, |
111 WebAXRoleImageMapLink, | 112 WebAXRoleImageMapLink, |
112 WebAXRoleImageMap, | 113 WebAXRoleImageMap, |
113 WebAXRoleImage, | 114 WebAXRoleImage, |
114 WebAXRoleIncrementor, | 115 WebAXRoleIncrementor, |
115 WebAXRoleInlineTextBox, | 116 WebAXRoleInlineTextBox, |
116 WebAXRoleLabel, | 117 WebAXRoleLabel, |
117 WebAXRoleLegend, | 118 WebAXRoleLegend, |
118 WebAXRoleLink, | 119 WebAXRoleLink, |
119 WebAXRoleListBoxOption, | 120 WebAXRoleListBoxOption, |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 enum WebAXTextDirection { | 215 enum WebAXTextDirection { |
215 WebAXTextDirectionLR, | 216 WebAXTextDirectionLR, |
216 WebAXTextDirectionRL, | 217 WebAXTextDirectionRL, |
217 WebAXTextDirectionTB, | 218 WebAXTextDirectionTB, |
218 WebAXTextDirectionBT | 219 WebAXTextDirectionBT |
219 }; | 220 }; |
220 | 221 |
221 } // namespace blink | 222 } // namespace blink |
222 | 223 |
223 #endif | 224 #endif |
OLD | NEW |