Skip to content

Commit

Permalink
fix: auto-cleanup by bot (mdn#37442)
Browse files Browse the repository at this point in the history
chore: auto-fix Markdownlint, Prettier, and front-matter issues
  • Loading branch information
mdn-bot authored Dec 30, 2024
1 parent ffa1044 commit b1623a5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions files/en-us/web/api/element/ariamultiselectable/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,16 @@ A string with one of the following values:
In this example the `aria-multiselectable` attribute on the element with an ID of `listbox1` is set to "true" indicating that this input accepts multiple selected items. Using `ariaMultiSelectable` we update the value to "false".

```html
<div role="listbox" tabindex="0" id="listbox1"
aria-multiselectable="true" aria-labelledby="listbox1label" aria-activedescendant="listbox1-1">
<div role="option" id="listbox1-1" class="selected" aria-selected="true">Green</div>
<div
role="listbox"
tabindex="0"
id="listbox1"
aria-multiselectable="true"
aria-labelledby="listbox1label"
aria-activedescendant="listbox1-1">
<div role="option" id="listbox1-1" class="selected" aria-selected="true">
Green
</div>
<div role="option" id="listbox1-2">Orange</div>
<div role="option" id="listbox1-3">Red</div>
</div>
Expand Down

0 comments on commit b1623a5

Please sign in to comment.