Skip to content

Instantly share code, notes, and snippets.

@jpdevries
Created May 7, 2017 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpdevries/dce2d792f54156cee21fb32e33e577e6 to your computer and use it in GitHub Desktop.
Save jpdevries/dce2d792f54156cee21fb32e33e577e6 to your computer and use it in GitHub Desktop.
Ensure that each table header in a data table refers to data cells issue?
<table>
<thead>
<tr>
<th>Media</th>
<th>Filename</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="http://j4p.us/433U312j1Z0S/Screen%20Shot%202017-05-07%20at%203.24.10%20AM.png" alt="YOLO"></td><!-- fails axe-core https://dequeuniversity.com/rules/axe/2.1/th-has-data-cells -->
<td>screenshot.jpg</td>
</tr>
</tbody>
</table>
@jpdevries
Copy link
Author

Noticed this when testing Eureka media browser:
https://eureka.markup.tips/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment