| 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 WebAXStateChecked, | 198 WebAXStateChecked, |
| 199 WebAXStateEnabled, | 199 WebAXStateEnabled, |
| 200 WebAXStateExpanded, | 200 WebAXStateExpanded, |
| 201 WebAXStateFocusable, | 201 WebAXStateFocusable, |
| 202 WebAXStateFocused, | 202 WebAXStateFocused, |
| 203 WebAXStateHaspopup, | 203 WebAXStateHaspopup, |
| 204 WebAXStateHovered, | 204 WebAXStateHovered, |
| 205 WebAXStateIndeterminate, | 205 WebAXStateIndeterminate, |
| 206 WebAXStateInvisible, | 206 WebAXStateInvisible, |
| 207 WebAXStateLinked, | 207 WebAXStateLinked, |
| 208 WebAXStateMultiline, | |
| 209 WebAXStateMultiselectable, | 208 WebAXStateMultiselectable, |
| 210 WebAXStateOffscreen, | 209 WebAXStateOffscreen, |
| 211 WebAXStatePressed, | 210 WebAXStatePressed, |
| 212 WebAXStateProtected, | 211 WebAXStateProtected, |
| 213 WebAXStateReadonly, | 212 WebAXStateReadonly, |
| 214 WebAXStateRequired, | 213 WebAXStateRequired, |
| 215 WebAXStateSelectable, | 214 WebAXStateSelectable, |
| 216 WebAXStateSelected, | 215 WebAXStateSelected, |
| 217 WebAXStateVertical, | 216 WebAXStateVertical, |
| 218 WebAXStateVisited, | 217 WebAXStateVisited, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 WebAXInvalidStateFalse, | 268 WebAXInvalidStateFalse, |
| 270 WebAXInvalidStateTrue, | 269 WebAXInvalidStateTrue, |
| 271 WebAXInvalidStateSpelling, | 270 WebAXInvalidStateSpelling, |
| 272 WebAXInvalidStateGrammar, | 271 WebAXInvalidStateGrammar, |
| 273 WebAXInvalidStateOther | 272 WebAXInvalidStateOther |
| 274 }; | 273 }; |
| 275 | 274 |
| 276 } // namespace blink | 275 } // namespace blink |
| 277 | 276 |
| 278 #endif | 277 #endif |
| OLD | NEW |