- From: Steven Faulkner <faulkner.steve@gmail.com>
- Date: Thu, 17 Jun 2010 09:37:29 +0100
- To: HTMLWG WG <public-html@w3.org>
- Message-ID: <AANLkTimtA74hvwEp6eBE-m-57dMx-8TNA7PKb4TN8T5T@mail.gmail.com>
what are the use cases for data tables with headers <th>? <table> <tr> <td>1</td> </tr> <tr> <td>2</td> </tr> <tr> <td>3</td> </tr> </table> what are the use cases for a single cell data table? <table> <tr> <td>1</td> </tr> </table> what are the use cases for headings containing multiple sentences? <h1> This heading contains multiple sentnences. Under what circumstances does this make sense?</h1> under what circumstances does it make sense for a page with only a heading to be considered conforming? <!DOCTYPE html> <html> <head> <title></title> </head> <body> <h1></h1> </body> </html> Under what circumstances does it make sense for a page without any content in the body and no content in the title to be considered conforming? <!DOCTYPE html> <html> <head> <title></title> </head> <body> </body> </html> Under what circumstances does it make sense for a list with no content to be considered conforming? <!DOCTYPE html> <html> <head> <title></title> </head> <body> <dl> <dt><dd> </dl> </body> </html> -- with regards Steve Faulkner Technical Director - TPG Europe Director - Web Accessibility Tools Consortium www.paciellogroup.com | www.wat-c.org Web Accessibility Toolbar - http://www.paciellogroup.com/resources/wat-ie-about.html
Received on Thursday, 17 June 2010 08:38:23 UTC