| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 kWebAXInvalidStateFalse, | 297 kWebAXInvalidStateFalse, |
| 298 kWebAXInvalidStateTrue, | 298 kWebAXInvalidStateTrue, |
| 299 kWebAXInvalidStateSpelling, | 299 kWebAXInvalidStateSpelling, |
| 300 kWebAXInvalidStateGrammar, | 300 kWebAXInvalidStateGrammar, |
| 301 kWebAXInvalidStateOther | 301 kWebAXInvalidStateOther |
| 302 }; | 302 }; |
| 303 | 303 |
| 304 enum WebAXMarkerType { | 304 enum WebAXMarkerType { |
| 305 kWebAXMarkerTypeSpelling = 1 << 0, | 305 kWebAXMarkerTypeSpelling = 1 << 0, |
| 306 kWebAXMarkerTypeGrammar = 1 << 1, | 306 kWebAXMarkerTypeGrammar = 1 << 1, |
| 307 kWebAXMarkerTypeTextMatch = 1 << 2 | 307 kWebAXMarkerTypeTextMatch = 1 << 2, |
| 308 // Skip DocumentMarker::MarkerType::Composition |
| 309 kWebAXMarkerTypeActiveSuggestion = 1 << 4, |
| 308 }; | 310 }; |
| 309 | 311 |
| 310 // Used for exposing text attributes. | 312 // Used for exposing text attributes. |
| 311 enum WebAXTextStyle { | 313 enum WebAXTextStyle { |
| 312 kWebAXTextStyleNone = 0, | 314 kWebAXTextStyleNone = 0, |
| 313 kWebAXTextStyleBold = 1 << 0, | 315 kWebAXTextStyleBold = 1 << 0, |
| 314 kWebAXTextStyleItalic = 1 << 1, | 316 kWebAXTextStyleItalic = 1 << 1, |
| 315 kWebAXTextStyleUnderline = 1 << 2, | 317 kWebAXTextStyleUnderline = 1 << 2, |
| 316 kWebAXTextStyleLineThrough = 1 << 3 | 318 kWebAXTextStyleLineThrough = 1 << 3 |
| 317 }; | 319 }; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 // empty vector. | 388 // empty vector. |
| 387 enum class WebAXObjectVectorAttribute { | 389 enum class WebAXObjectVectorAttribute { |
| 388 kAriaControls, | 390 kAriaControls, |
| 389 kAriaDetails, | 391 kAriaDetails, |
| 390 kAriaFlowTo, | 392 kAriaFlowTo, |
| 391 }; | 393 }; |
| 392 | 394 |
| 393 } // namespace blink | 395 } // namespace blink |
| 394 | 396 |
| 395 #endif | 397 #endif |
| OLD | NEW |