| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 // Accessibility states, used as a bitmask. | 198 // Accessibility states, used as a bitmask. |
| 199 enum WebAXState { | 199 enum WebAXState { |
| 200 WebAXStateBusy, | 200 WebAXStateBusy, |
| 201 WebAXStateChecked, | 201 WebAXStateChecked, |
| 202 WebAXStateEnabled, | 202 WebAXStateEnabled, |
| 203 WebAXStateExpanded, | 203 WebAXStateExpanded, |
| 204 WebAXStateFocusable, | 204 WebAXStateFocusable, |
| 205 WebAXStateFocused, | 205 WebAXStateFocused, |
| 206 WebAXStateHaspopup, | 206 WebAXStateHaspopup, |
| 207 WebAXStateHovered, | 207 WebAXStateHovered, |
| 208 WebAXStateIndeterminate, | |
| 209 WebAXStateInvisible, | 208 WebAXStateInvisible, |
| 210 WebAXStateLinked, | 209 WebAXStateLinked, |
| 211 WebAXStateMultiline, | 210 WebAXStateMultiline, |
| 212 WebAXStateMultiselectable, | 211 WebAXStateMultiselectable, |
| 213 WebAXStateOffscreen, | 212 WebAXStateOffscreen, |
| 214 WebAXStatePressed, | 213 WebAXStatePressed, |
| 215 WebAXStateProtected, | 214 WebAXStateProtected, |
| 216 WebAXStateReadonly, | 215 WebAXStateReadonly, |
| 217 WebAXStateRequired, | 216 WebAXStateRequired, |
| 218 WebAXStateSelectable, | 217 WebAXStateSelectable, |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 WebAXDescriptionFromUninitialized = -1, | 295 WebAXDescriptionFromUninitialized = -1, |
| 297 WebAXDescriptionFromAttribute = 0, | 296 WebAXDescriptionFromAttribute = 0, |
| 298 WebAXDescriptionFromContents, | 297 WebAXDescriptionFromContents, |
| 299 WebAXDescriptionFromPlaceholder, | 298 WebAXDescriptionFromPlaceholder, |
| 300 WebAXDescriptionFromRelatedElement, | 299 WebAXDescriptionFromRelatedElement, |
| 301 }; | 300 }; |
| 302 | 301 |
| 303 } // namespace blink | 302 } // namespace blink |
| 304 | 303 |
| 305 #endif | 304 #endif |
| OLD | NEW |