Re: TFOOT accessibility

MessageJohn,
Tfoot is optional and in that example as well as in the  current one,  it has been correctly used. So what violation did you expect  the eval tool to identify?
Please see attached file. It has a 
complex table   from HTML techniques page. I have  added headers and id to this table and it also has a footers section. I have added id to the footers section and referenced them in cells in tbody section. They work fine.
WinEyes 4.5: does the best job and announces table section  too as one navigates into it. Reads headers correctly. WinEyes reads all header values  for a cell.
HPR 3.02:  Does not announce table sections but reads headers correctly. Only reads header values as  row/column changes. But messes up reading headers for last line of footers.
JAWS 5.812: Does not announce table sections. If one reads table in linear fashion (without table keys) it reads footers at end. With table nav keys, it reads footers once before body and then at end. Does headers association correctly for cells in body section. But for first row of footers, it reads column headings at top of table. Only reads header values as  row/column changes which is ok.
If one uses headers and id, one must indicate all relevant header cells. HPR and WE do not read column headings that are not in the headers value which one expects them to read normally as one navigates sideways.  But JAWS reads them. For instance if header value does not include   id for meals / hotel/ transport, they are still read. e.g. first line of footers.
Will be useful if JFW and HPR announce change in table section.
Code follows
Sailesh Panchang
Senior Accessibility Engineer 
Deque Systems,11180  Sunrise Valley Drive, 
4th Floor, Reston VA 20191
Tel: 703-225-0380 Extension 105 
E-mail: sailesh.panchang@deque.com
Fax: 703-225-0387
* Look up <http://www.deque.com> *



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML lang="EN">
<HEAD><TITLE>Table with TFOOT demonstrating use of color used to highlight some cells in accessible manner</TITLE>
</HEAD>
<h2>Table #2 </h2>
<p>
</p>
<table border="1"
summary="this table summarizes travel expenses incurred during August trips to San Jose and Seattle. The expenses are recorded for each day of visit in
rows below the two places. Some cells are shaded grey or yellow; key to colors is at the bottomm of the table.">
<caption>
Table 1: Complex table- Travel Expense Report </caption>
<thead>
<tr>
<th></th>
<th id="c2">Meals</th>
<th id="c3" >Hotels</th>
<th id="c4" >Transport</th>
<th id="c5">Total</th>
</tr>
</thead>
<tfoot>
<tr>
<th id="r11">Key to color shading:</th>
<th colspan="2" bgcolor="grey" id="grey" headers="r11">Grey</th>
<th colspan="2" bgcolor="yellow" id="yellow" headers="r11">Yellow</th>
</tr>
<tr id="r12"><th>What it means</th>
<td colspan="2" id="clr1" headers="grey r12">Pre-approved</td>
<td colspan="2" id="clr2" headers="yellow r12">Approved post-visit</td>
</tr>
</tfoot>

<tbody>
<tr>
<th id="r2" >San Jose</th>
<th></th>
<th></th>
<th></th>
<td></td>
</tr>
<tr>

<th id="r3" headers="r2" >25-Aug-97</th>

<td headers="r2 r3 c2 clr1" bgcolor="grey">37.74</td>

<td headers="r2 r3 c3">112.00</td>

<td headers="r2 r3 c4">45.00</td>

<td></td>

</tr>

<tr>
<th id="r4"headers="r2" >26-Aug-97</th>
<td headers="r2 r4 c2">27.28</td>
<td headers="r2 r4 c3">112.00</td>
<td headers="r2 r4 c4 clr1"bgcolor="grey" >45.00</td>
<td></td>
</tr>
<tr>
<th id="r5" headers="r2" >Subtotals</th>
<td headers="r2 r5 c2" >65.02</td>
<td headers="r2 r5 c3" >224.00</td>
<td headers="r2 r5 c4" >90.00</td>
<td headers="r2 r5" >379.02</td>
</tr>
<tr>
<th id="r6" >Seattle</th>
<th></th>
<th></th>
<th></th>
<td></td>
</tr>
<tr>
<th id="r7" headers="r6" >27-Aug-97</th>
<td headers="r6 r7 c2 clr2" bgcolor="yellow" >96.25</td>
<td headers="r6 r7 c3">109.00</td>
<td headers="r6 r7 c4">36.00</td>
<td></td>
</tr>
<tr>
<th id="r8" headers="r6" >28-Aug-97</th>
<td headers="r6 r8 c2">35.00</td>
<td headers="r6 r8 c3">109.00</td>
<td headers="r6 r8 c4">36.00</td>
<td></td>
</tr>
<tr>
<th id="r9" headers="r6" >subtotals</th>
<td headers="r6 r9 c2" >131.25</td>
<td headers="r6 r9 c3">218.00</td>
<td headers="r6 r9 c4">72.00</td>
<td headers="r6 r9">421.25</td>
</tr>
<tr>
<th>Totals for 4-days' trip</th>
<td headers="c2">196.27</td>
<td headers="c3">442.00</td>
<td headers="c4">162.00</td>
<td headers="c5">800.27</td>
</tr>
</tbody>
</table>

</BODY></HTML>

Received on Friday, 13 February 2004 13:37:07 UTC