Accessibility violations

Created on 3 November 2022, over 2 years ago

Problem/Motivation

After running an accessibility scan on a page that uses chosen, I am seeing the following errors:
1. This select element does not have a mechanism that allows an accessible name value to be calculated
This is obviously from the select element that exists on the page (even though it is hidden).

2. This input (type=text) element does not have a mechanism that allows an accessible name value to be calculated
The HTML: <input class="chosen-search-input" type="text" autocomplete="off">

Proposed resolution

I think the addition of an aria-label would do the trick here.

πŸ› Bug report
Status

Active

Version

3.0

Component

User interface

Created by

Live updates comments and jobs are added and updated live.
  • Accessibility

    It affects the ability of people with disabilities or special needs (such as blindness or color-blindness) to use Drupal.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States medinasod

    +1 for this issue.

  • πŸ‡­πŸ‡ΊHungary nagy.balint

    Is this an issue on the 4.0.x branch as well with jjj/chosen?

  • πŸ‡²πŸ‡ΎMalaysia ckng

    I'm maintaining a copy with a11y fixes at https://github.com/ckng/chosen. You can download the released zip.

    Instruction for Drupal: https://github.com/ckng/chosen?tab=readme-ov-file#to-replace-drupal-chos...
    Reproduced here:

    Extract the released zip into THEMES/js/chosen, for example, where THEME is your theme name.

    In your THEME.libraries.yml:

    chosen:
      remote: https://github.com/ckng/chosen
      version: 2.2.1
      license:
        name: MIT
        url: https://github.com/ckng/chosen/blob/master/LICENSE.md
        gpl-compatible: true
      js:
        js/chosen/chosen.jquery.min.js: { minified: true }
      dependencies:
        - core/jquery
    
    chosen.css:
      version: 2.2.1
      css:
        component:
          js/chosen/chosen.css: {}
    

    In your THEME.info.yml, override fully the default from chosen_lib.

    libraries-override:
    chosen_lib/chosen: THEME/chosen
    chosen_lib/chosen.css: THEME/chosen.css

  • πŸ‡­πŸ‡ΊHungary nagy.balint

    Let me know if 5.0.0 still has accessibility issues.
    It has a new fork with some improvements.

  • Status changed to Postponed: needs info 27 days ago
  • πŸ‡ΊπŸ‡ΈUnited States samantharaut

    After installing 5.0.1 and running an accessibility check (using axe DevTools Chrome extension) on a page that uses Chosen, the following error is flagged with the following solve:

    Elements must only use permitted ARIA attributes. Ensure ARIA attributes are not prohibited for an element's role
    Element Location: #edit_affiliation_chosen > .chosen-single > div[aria-label="Show options"]
    <div aria-label="Show options"><b aria-hidden="true"></b></div>
    To solve this problem, you need to fix the following: aria-label attribute cannot be used on a div with no valid role attribute.

    A possible solution could be to change the code to <div aria-label="Show options" role="listbox"> with a role added. Doing this and running the scan again eliminates the error.

Production build 0.71.5 2024