graphics-roles.js 485 B

12345678910111213141516171819202122
  1. // Source: https://www.w3.org/TR/graphics-aria-1.0/
  2. const graphicsRoles = {
  3. 'graphics-document': {
  4. type: 'structure',
  5. superclassRole: ['document'],
  6. accessibleNameRequired: true
  7. },
  8. 'graphics-object': {
  9. type: 'structure',
  10. superclassRole: ['group'],
  11. nameFromContent: true
  12. },
  13. 'graphics-symbol': {
  14. type: 'structure',
  15. superclassRole: ['img'],
  16. accessibleNameRequired: true,
  17. childrenPresentational: true
  18. }
  19. };
  20. export default graphicsRoles;