<table> with no accessible name

Return to main list

The purpose this test is to show the cascade order of how accessible names are applied in the accessibility tree for the <table> element. The priority order from highest to lowest is:

Example

Fishes Birds
Snapper Starling
Salmon Eagle

Code

<table>
  <thead>
    <tr>
      <th>Fishes</th>
      <th>Birds</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Snapper</td>
      <td>Starling</td>
    </tr>
    <tr>
      <td>Salmon</td>
      <td>Eagle</td>
    </tr>
  </tbody>
</table>

Assistive technologies

VoiceOver

NVDA

JAWS

Return to main list