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

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

Issue 2833843005: Handling of different types of empty alt (Closed)
Patch Set: Ready to land Created 3 years, 7 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 kWebAXTextStyleUnderline = 1 << 2, 316 kWebAXTextStyleUnderline = 1 << 2,
317 kWebAXTextStyleLineThrough = 1 << 3 317 kWebAXTextStyleLineThrough = 1 << 3
318 }; 318 };
319 319
320 // The source of the accessible name of an element. This is needed 320 // The source of the accessible name of an element. This is needed
321 // because on some platforms this determines how the accessible name 321 // because on some platforms this determines how the accessible name
322 // is exposed. 322 // is exposed.
323 enum WebAXNameFrom { 323 enum WebAXNameFrom {
324 kWebAXNameFromUninitialized = -1, 324 kWebAXNameFromUninitialized = -1,
325 kWebAXNameFromAttribute = 0, 325 kWebAXNameFromAttribute = 0,
326 kWebAXNameFromAttributeExplicitlyEmpty,
326 kWebAXNameFromCaption, 327 kWebAXNameFromCaption,
327 kWebAXNameFromContents, 328 kWebAXNameFromContents,
328 kWebAXNameFromPlaceholder, 329 kWebAXNameFromPlaceholder,
329 kWebAXNameFromRelatedElement, 330 kWebAXNameFromRelatedElement,
330 kWebAXNameFromValue, 331 kWebAXNameFromValue,
331 kWebAXNameFromTitle, 332 kWebAXNameFromTitle,
332 }; 333 };
333 334
334 // The source of the accessible description of an element. This is needed 335 // The source of the accessible description of an element. This is needed
335 // because on some platforms this determines how the accessible description 336 // because on some platforms this determines how the accessible description
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 // empty vector. 387 // empty vector.
387 enum class WebAXObjectVectorAttribute { 388 enum class WebAXObjectVectorAttribute {
388 kAriaControls, 389 kAriaControls,
389 kAriaDetails, 390 kAriaDetails,
390 kAriaFlowTo, 391 kAriaFlowTo,
391 }; 392 };
392 393
393 } // namespace blink 394 } // namespace blink
394 395
395 #endif 396 #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