This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 14332 - Table
Summary: Table
Status: RESOLVED INVALID
Alias: None
Product: HTML Checker
Classification: Unclassified
Component: General (show other bugs)
Version: unspecified
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Michael[tm] Smith
QA Contact: qa-dev tracking
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-29 13:09 UTC by Markus Bontenackels
Modified: 2015-08-23 07:07 UTC (History)
1 user (show)

See Also:


Attachments

Description Markus Bontenackels 2011-09-29 13:09:24 UTC
If i load up a Item to Validator with a Table and the Code of the Homepage is

<table>
  <tr>
    <td> Zeile 1 - Spalte 1 <td> | !
    <td> Zeile 1 - Spalte 2 </td>
    ...
    <td> Zeile 1 - Spalte n </td>
  </tr>
  <tr>
    <td> Zeile 2 - Spalte 1 </td>
    <td> Zeile 2 - Spalte 2 </td>
    ...
    <td> Zeile 2 - Spalte n </td>
  </tr>
  ...
  <tr>
    <td> Zeile m - Spalte 1 </td>
    <td> Zeile m - Spalte 2 </td>
    ...
    <td> Zeile m - Spalte n </td>
  </tr>
</table>
</body>
</html>
the Validator do not show the fault in the 3 line.
Comment 1 Etienne Miret 2011-10-09 21:22:08 UTC
That's because there is no fault in the 3rd line. Closing <td> elements is optional in HTML, thus you're first row is perfectly valid. It just has one cell more than the others.