Changes between Initial Version and Version 1 of Ticket #5403, comment 4
- Timestamp:
- May 4, 2011, 1:42:13 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5403, comment 4
initial v1 3 3 The listboxes in the editor drop-downs behave as "single-select" listboxes as far as I can tell, i.e. it is not possible to use Space to select more than one option at a time, since selecting the option actions it. In fact, the listboxes behave more like menus... 4 4 5 The drop-down lists could be implemented as menus with menuitems. For those drop-downs that can have multiple items pre-selected, e.g. the styles drop-down, we would use menuitem checkboxand aria-checked="true" for the pre-selected options. For drop-downs with a single pre-selected value e.g. font, we would use menuitemcheckbox with aria-checked="true". An example page with this implementation can be found here: [http://www.oaa-accessibility.org/example/25/]5 The drop-down lists could be implemented as menus with menuitems. For those drop-downs that can have multiple items pre-selected, e.g. the styles drop-down, we would use menuitemradio and aria-checked="true" for the pre-selected options. For drop-downs with a single pre-selected value e.g. font, we would use menuitemcheckbox with aria-checked="true". An example page with this implementation can be found here: [http://www.oaa-accessibility.org/example/25/] 6 6 7 7 See WAI-ARIA spec for details: [http://www.w3.org/TR/2010/WD-wai-aria-20100916/roles#menuitemcheckbox] 8 8 and [http://www.w3.org/TR/2010/WD-wai-aria-20100916/roles#menuitemradio] 9 9 10 An alternative might be to just use aria-checked="true" on the listbox options, since role="option" can support aria-checked. 10 11 11 12 12 13 13 14 14