[PAC] TBody and TFoot but no THead #1332
Unanswered
LupinoTech
asked this question in
Issues with accessibility checkers and other AT software
Replies: 3 comments 7 replies
|
Would you mind adding the validator to the subject title like A concrete example would also help with testing etc. |
2 replies
|
Here are MWEs:
the source code for all three PDF files is the same (for copyright reasons, I omitted the material below and above the table and filled the table contents with placeholders): <table class="void">
<col width="0.8"/>
<col width="0.2" style="text-align:right"/>
<tfoot>
<tr>
<td style="text-align:left" colspan="2">
<p><?tex \hbox to 5mm\bgroup?><sup>1)</sup><?tex \egroup?>some table note</p>
</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>
<p>(redacted)</p>
</td>
<td>
<p>(Value)</p>
</td>
</tr>
<tr>
<td>
<p>(redacted)</p>
</td>
<td>
<p>(Value)<sup>1)</sup></p>
</td>
</tr>
<tr>
<td>
<p>(redacted)</p>
</td>
<td>
<p>(Value)</p>
</td>
</tr>
<tr>
<td>
<p>(redacted)</p>
</td>
<td>
<p>(Value)</p>
</td>
</tr>
<tr>
<td>
<p>(redacted)</p>
</td>
<td>
<p>(Value)</p>
</td>
</tr>
</tbody>
</table> |
3 replies
|
Did you reported the issue to PAC? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have a
<table>from XML input (xmltex) with a<tbody>and a<tfoot>, but no<thead>or<th>cells.<tbody>as/TBodyand the<tfoot>as/TFoot, PAC issues a warning: "wrongful use of TBody".<tr>from the body under/Tableand leave the/TFoot, PAC issues a hard error for each/TR: "wrongful use of TR"./TRs of both<tbody>and<tfoot>directly under the/Table, but that destroys the distinction between "normal" rows and footer rows.All reactions