From aacf64411e1fb835800b88b60048a31a69ab6832 Mon Sep 17 00:00:00 2001 From: Sarah Higley Date: Wed, 14 Sep 2022 18:23:09 -0700 Subject: [PATCH 1/2] add note on multiselect listbox keyboard behavior --- content/patterns/listbox/examples/listbox-rearrangeable.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/patterns/listbox/examples/listbox-rearrangeable.html b/content/patterns/listbox/examples/listbox-rearrangeable.html index 96d2e01612..71386c164f 100644 --- a/content/patterns/listbox/examples/listbox-rearrangeable.html +++ b/content/patterns/listbox/examples/listbox-rearrangeable.html @@ -265,6 +265,9 @@

Keyboard Support

Multiple selection keys supported in example 2

+

+ The selection behavior demonstrated differs from the behavior provided by browsers for native HTML <select multiple> elements. The select element behavior is to alter selection with unmodified up/down arrow keys, requiring the use of modifier keys to select multiple options. This example demonstrates a multiple selection pattern that does not require the use of modifier keys. +

From 2f53a2eeaff275d0aec2bbc675ea46ff9408fd7b Mon Sep 17 00:00:00 2001 From: Matt King Date: Sun, 2 Oct 2022 15:48:15 -0700 Subject: [PATCH 2/2] Minor editorial revision and add link to pattern --- .../patterns/listbox/examples/listbox-rearrangeable.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/content/patterns/listbox/examples/listbox-rearrangeable.html b/content/patterns/listbox/examples/listbox-rearrangeable.html index 71386c164f..3bb5e49846 100644 --- a/content/patterns/listbox/examples/listbox-rearrangeable.html +++ b/content/patterns/listbox/examples/listbox-rearrangeable.html @@ -264,9 +264,13 @@

Keyboard Support

-

Multiple selection keys supported in example 2

+

Multiple selection keys supported in example 2

- The selection behavior demonstrated differs from the behavior provided by browsers for native HTML <select multiple> elements. The select element behavior is to alter selection with unmodified up/down arrow keys, requiring the use of modifier keys to select multiple options. This example demonstrates a multiple selection pattern that does not require the use of modifier keys. + The selection behavior demonstrated differs from the behavior provided by browsers for native HTML <select multiple> elements. + The HTML select element behavior is to alter selection with unmodified up/down arrow keys, requiring the use of modifier keys to select multiple options. + This example demonstrates the multiple selection interaction model recommended in the + Keyboard Interaction section of the Listbox Pattern, + which does not require the use of modifier keys.