[Bug 11525] New: Missing tbody element

http://www.w3.org/Bugs/Public/show_bug.cgi?id=11525

           Summary: Missing tbody element
           Product: HTML WG
           Version: unspecified
          Platform: PC
        OS/Version: Windows NT
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HTML/XHTML Compatibility Authoring Guide (ed: Eliot
                    Graff)
        AssignedTo: eliotgra@microsoft.com
        ReportedBy: davidc@nag.co.uk
         QAContact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-wg-issue-tracking@w3.org,
                    public-html@w3.org, eliotgra@microsoft.com


the second table in section 12, and in the sample document, demonstrates an
explicit <colgroup> but it omits the <tbody> element, violating the rule given
a line or two above.

 <table>
      <colgroup>
        <col style="background-color:silver"/>
        <col style="background-color:gray"/>
        <col style="background-color:yellow"/>
      </colgroup>
      <tr>


should be


 <table>
      <colgroup>
        <col style="background-color:silver"/>
        <col style="background-color:gray"/>
        <col style="background-color:yellow"/>
      </colgroup>
<tbody>
      <tr>


actually the first row of both tables would probably be better in thead rather
than tbody, but that's unrelated to polyglot considerations.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

Received on Friday, 10 December 2010 13:40:53 UTC