Archive index

A11y Slackers Gitter Channel Archive 26th of July 2017

What fresh hell is THIS now? - Patrick Lauke
  1. zakim-robot
    @zakim-robot
    Jul 26 03:02
    [nschonni] TBH, I don't know the accessibility story by "yeah"? @tink https://blogs.adobe.com/conversations/2017/07/adobe-flash-update.html
  2. [mattmay] I know the story. I'll be standing over Flash's corpse with a silver dagger because of it.
  3. zakim-robot
    @zakim-robot
    Jul 26 03:37
    [nschonni] I had to check about AIR, because that's the second coming of Flash. We still need it for Balsamiq :p
  4. zakim-robot
    @zakim-robot
    Jul 26 18:35
    [virtualalex] Does windows have a “voice over” built in?
  5. [virtualalex] or do win users need to download something?
  6. [scottohara] but there’s also screen readers like JAWS and NVDA, to name a couple
  7. [virtualalex] is JAWS free?
  8. [scottohara] it has a free trial
  9. [virtualalex] ok NVDA is free I know
  10. [virtualalex] thank you for your help
  11. zakim-robot
    @zakim-robot
    Jul 26 18:43
    [virtualalex] Does Android have a voice over utility also?
  12. [tyronem] It’s called TalkBack, and it’s built-in.
  13. [virtualalex] great thanks
  14. [virtualalex] I am writing a sort of guide…
  15. zakim-robot
    @zakim-robot
    Jul 26 19:14
    [quidkid] I’m having trouble deciding whether to use aria-expanded or aria-pressed for a a hamburger menu button that leads to a side nav. Also what is the difference between role=“menu” and role=“navigation” and when should I use which?
  16. zakim-robot
    @zakim-robot
    Jul 26 19:30
    [ugi] @quidkid I’d use aria-expanded. aria-pressed is more appropriate for widgets like a toggle switch (i.e a ‘Mute’ button on a media player). role=“navigation” is a landmark role, role=“menu” is a widget role. Use menu role on widgets that look like menu bars found in desktop applications. Use navigation role where you can use <nav> tag, for grouping links.
  17. [quidkid] @ugi
  18. [quidkid] thank you!
  19. [quidkid] also for the <nav> should i stick my menu button inside?
  20. [elliottregan] I wouldn’t. I think that this pattern would be relevant here: http://heydonworks.com/practical_aria_examples/#submenus
  21. [elliottregan] use aria-haspopup="true" for the menu toggle.
  22. zakim-robot
    @zakim-robot
    Jul 26 19:35
    [ugi] probably not the button itself, but the contents of the hamburger menu may be placed inside a nav.
  23. [scottohara] the button should be placed inside of the navigation
  24. [scottohara] here’s a piece i wrote about that: http://www.scottohara.me/blog/2016/08/10/not-really-about-the-button.html

    but to summarize, if your nav landmark is hidden behind a hamburger menu (on large or small screen) then it will be invisible to assistive technology.

    if you keep the nav landmark unhidden, and put the menu button within it / hide a sub-container of the navigation, then the nav landmark will stay discoverable to users, even if a nav is hidden

  25. zakim-robot
    @zakim-robot
    Jul 26 19:48
    [ugi] ^ +1