diff --git a/aria-practices.html b/aria-practices.html index 87fd9781b5..244efd68a5 100644 --- a/aria-practices.html +++ b/aria-practices.html @@ -414,7 +414,7 @@

Button

In this example, when the pressed state is true, the label remains "Mute" so a screen reader would say something like "Mute toggle button pressed". Alternatively, if the design were to call for the button label to change from "Mute" to "Unmute," the aria-pressed attribute would not be needed. -
  • Menu button: as described in the menu button pattern, a button is revealed to assistive technologies as a menu button if it has the property aria-haspopup set to true.
  • +
  • Menu button: as described in the menu button pattern, a button is revealed to assistive technologies as a menu button if it has the property aria-haspopup set to either menu or true.
  • The types of actions performed by buttons are distinctly different from the function of a link (see link pattern). @@ -1918,7 +1918,7 @@

    WAI-ARIA Roles, States, and Properties

    If activating a menuitem opens a submenu, the menuitem is known as a parent menuitem. A submenu's menu element is contained in or owned by it's parent menuitem. -
  • A parent menuitem has aria-haspopup set to true.
  • +
  • A parent menuitem has aria-haspopup set to either menu or true.
  • A parent menuitem has aria-expanded set to false when its child menu is not visible and set to true when the child menu is visible. (See note below regarding HTML validation.) @@ -1990,7 +1990,7 @@

    Keyboard Interaction

    WAI-ARIA Roles, States, and Properties