From 18158ea20dc4d0bffc865972c4cd56cac6328abe Mon Sep 17 00:00:00 2001 From: Matt King Date: Sun, 24 Jun 2018 23:30:26 -0700 Subject: [PATCH] Listbox Pattern: Clarify optional selection keyboard commands To make listbox consistent with changes in commit 3dab932 made for issue #708, modified listbox pattern section in aria-practices.html: * Change ctrl-shift-home to state that it can optionally move focus to the first node. * Change ctrl-shift-end to state that it can optionally move focus to the last node. --- aria-practices.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aria-practices.html b/aria-practices.html index 8829a83ade..9d65b5e5ec 100644 --- a/aria-practices.html +++ b/aria-practices.html @@ -1676,8 +1676,8 @@

Keyboard Interaction

  • Shift + Down Arrow (Optional): Moves focus to and toggles the selected state of the next option.
  • Shift + Up Arrow (Optional): Moves focus to and toggles the selected state of the previous option.
  • Shift + Space (Optional): Selects contiguous items from the most recently selected item to the focused item.
  • -
  • Control + Shift + Home (Optional): Selects the focused option and all options up to the first option.
  • -
  • Control + Shift + End (Optional): Selects the focused option and all options down to the last option.
  • +
  • Control + Shift + Home (Optional): Selects the focused option and all options up to the first option. Optionally, moves focus to the first option.
  • +
  • Control + Shift + End (Optional): Selects the focused option and all options down to the last option. Optionally, moves focus to the last option.
  • Control + A (Optional): Selects all options in the list. Optionally, if all options are selected, it may also unselect all options.
  • @@ -1689,8 +1689,8 @@

    Keyboard Interaction

  • Control + Up Arrow: Moves focus to the previous option without changing its selection state.
  • Control + Space Changes the selection state of the focused option.
  • Shift + Space (Optional): Selects contiguous items from the most recently selected item to the focused item.
  • -
  • Control + Shift + Home (Optional): Selects the focused option and all options up to the first option.
  • -
  • Control + Shift + End (Optional): Selects the focused option and all options down to the last option.
  • +
  • Control + Shift + Home (Optional): Selects the focused option and all options up to the first option. Optionally, moves focus to the first option.
  • +
  • Control + Shift + End (Optional): Selects the focused option and all options down to the last option. Optionally, moves focus to the last option.
  • Control + A (Optional): Selects all options in the list. Optionally, if all options are selected, it may also unselect all options.