Tables used for layout should not include semantic markup, such as ``++<th>++`` elements, as it can confuse assistive technologies. At best this information is ignored by screen readers and makes the code less maintainable. However it can also confuse some screen readers and reduce the web page accessibility.
This rule raises an issue when a ``++<table>++`` element containing the``++role++`` attribute set to ``++"presentation"++`` or ``++"none"++`` also contains any of:
* a ``++<caption>++`` element
* a ``++<th>++`` element
* a non-empty ``++summary++`` attribute
* an ``++<td>++`` element with a ``++headers++`` or ``++scope++`` attribute
* https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0#qr-content-structure-separation-programmatic[WCAG2, 1.3.1]-Info and Relationships
* https://www.w3.org/TR/WCAG20-TECHS/F46.html[WCAG2, F46] - Failure of Success Criterion 1.3.1 due to using th elements, caption elements, or non-empty summary attributes in layout tables