Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note on APG vs. browser multiselect listbox keyboard pattern #2476

Merged
merged 2 commits into from
Oct 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion content/patterns/listbox/examples/listbox-rearrangeable.html
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,14 @@ <h2 id="kbd_label">Keyboard Support</h2>
</tr>
</tbody>
</table>
<h4 id="kbd_label_multiselect">Multiple selection keys supported in example 2</h4>
<h3 id="kbd_label_multiselect">Multiple selection keys supported in example 2</h3>
<p class="note">
The selection behavior demonstrated differs from the behavior provided by browsers for native HTML <code>&lt;select multiple&gt;</code> 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
<a href="../listbox-pattern.html#keyboard_interaction">Keyboard Interaction section of the Listbox Pattern</a>,
which does not require the use of modifier keys.
</p>
<table aria-labelledby="kbd_label_multiselect" class="def">
<thead>
<tr>
Expand Down