Uploaded image for project: 'ZK'
  1. ZK
  2. ZK-5373

focus button, z-focus-a, doesn't have an accessible name

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Major Major
    • None
    • 9.6.3
    • None
    • Security Level: Jimmy

      Steps to Reproduce

          <zscript><![CDATA[
      List Items = new ArrayList();
      for (int i = 0; i < 10; i++) {
          Items.add("data "+i);
      }
      ListModelList model = new ListModelList(Items);
      
      	]]></zscript>
          <listbox model="${model}" >
              <listhead>
                  <listheader label="listbox header"/>
              </listhead>
          </listbox>
      

      1. open chrome developer tool > lighthouse
      2. select Categories > Accessibility
      3. click "analyze page load"

      Current Result


      Buttons do not have an accessible name

      Expected Result

      the button doesn't cause a failure in the report

      Debug Information

      • although z-focus-a contains aria-labelby, the associated listbox doesn't contain any inner text
      • tree and other components with the same design have the same issue.

      5 pass criteria

      <button id="text">Name</button>
      
      <button id="al" aria-label="Name"></button>
      
      <button id="alb" aria-labelledby="labeldiv"></button>
      <div id="labeldiv">Button label</div>
      
      <button id="combo" aria-label="Aria Name">Name</button>
      
      <button id="buttonTitle" title="Title"></button>
      

      https://dequeuniversity.com/rules/axe/4.4/button-name?utm_source=lighthouse&utm_medium=devtools

      Workaround

      zk-5373.js

        1. report.png
          report.png
          30 kB
        2. zk-5373.js
          0.3 kB

            jamson jamson
            hawk hawk
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: