| next | toppreviousSpecial Processing


For aural rendering of tables, the browser speaks the pertinent headers before speaking the contents of each each table cell

The Layout method for table cells includes:

     // headers attribute lists ids for pertinent headers
     var hdrefs = GetAttribute(element, "headers");
 
     for (hdref in hdrefs)
     {
         header = GetElementByID(element, hdref);
         ProcessChildren(header, this);      
     }
  
     ProcessChildren(element, this);
 

HP Dave Raggett