Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: third_party/WebKit/public/web/WebAXEnums.h

Issue 2931473002: [ActiveSuggestionMarker #2.5] Handle ActiveSuggestionMarkers for accessibility (Closed)
Patch Set: Add TODO Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698