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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 kWebAXRoleDate, | 102 kWebAXRoleDate, |
103 kWebAXRoleDateTime, | 103 kWebAXRoleDateTime, |
104 kWebAXRoleDefinition, | 104 kWebAXRoleDefinition, |
105 kWebAXRoleDescriptionListDetail, | 105 kWebAXRoleDescriptionListDetail, |
106 kWebAXRoleDescriptionList, | 106 kWebAXRoleDescriptionList, |
107 kWebAXRoleDescriptionListTerm, | 107 kWebAXRoleDescriptionListTerm, |
108 kWebAXRoleDetails, | 108 kWebAXRoleDetails, |
109 kWebAXRoleDialog, | 109 kWebAXRoleDialog, |
110 kWebAXRoleDirectory, | 110 kWebAXRoleDirectory, |
111 kWebAXRoleDisclosureTriangle, | 111 kWebAXRoleDisclosureTriangle, |
112 kWebAXRoleDiv, | |
113 kWebAXRoleDocument, | 112 kWebAXRoleDocument, |
114 kWebAXRoleEmbeddedObject, | 113 kWebAXRoleEmbeddedObject, |
115 kWebAXRoleFeed, | 114 kWebAXRoleFeed, |
116 kWebAXRoleFigcaption, | 115 kWebAXRoleFigcaption, |
117 kWebAXRoleFigure, | 116 kWebAXRoleFigure, |
118 kWebAXRoleFooter, | 117 kWebAXRoleFooter, |
119 kWebAXRoleForm, | 118 kWebAXRoleForm, |
| 119 kWebAXRoleGenericContainer, |
120 kWebAXRoleGrid, | 120 kWebAXRoleGrid, |
121 kWebAXRoleGroup, | 121 kWebAXRoleGroup, |
122 kWebAXRoleHeading, | 122 kWebAXRoleHeading, |
123 kWebAXRoleIframePresentational, | 123 kWebAXRoleIframePresentational, |
124 kWebAXRoleIframe, | 124 kWebAXRoleIframe, |
125 kWebAXRoleIgnored, | 125 kWebAXRoleIgnored, |
126 kWebAXRoleImageMapLink, | 126 kWebAXRoleImageMapLink, |
127 kWebAXRoleImageMap, | 127 kWebAXRoleImageMap, |
128 kWebAXRoleImage, | 128 kWebAXRoleImage, |
129 kWebAXRoleInlineTextBox, | 129 kWebAXRoleInlineTextBox, |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 // empty vector. | 387 // empty vector. |
388 enum class WebAXObjectVectorAttribute { | 388 enum class WebAXObjectVectorAttribute { |
389 kAriaControls, | 389 kAriaControls, |
390 kAriaDetails, | 390 kAriaDetails, |
391 kAriaFlowTo, | 391 kAriaFlowTo, |
392 }; | 392 }; |
393 | 393 |
394 } // namespace blink | 394 } // namespace blink |
395 | 395 |
396 #endif | 396 #endif |
OLD | NEW |