- From: Lachlan Hunt via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 11 Mar 2009 14:09:33 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/html-author/utils In directory hutz:/tmp/cvs-serv18493/utils Modified Files: categories-template.html elementdesc.txt elements.html Log Message: Fixed start tag requirement for colgroup element Index: categories-template.html =================================================================== RCS file: /sources/public/html5/html-author/utils/categories-template.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- categories-template.html 9 Mar 2009 16:11:12 -0000 1.1 +++ categories-template.html 11 Mar 2009 14:09:31 -0000 1.2 @@ -1,7 +1,13 @@ <table> + <col/> + <colgroup span="8"></colgroup> + <colgroup span="4"></colgroup> <thead> <tr> - <th>Element</th> + <th rowspan="2">Element</th> + <th>Standards Categories</th> + <th>Form Categories</th> + <tr> <th>Metadata Content</th> <th>Flow content</th> <th>Sectioning root</th> @@ -10,7 +16,8 @@ <th>Phrasing content</th> <th>Embedded content</th> <th>Interactive content</th> - <th>Transparent Content Models</th> + + <th>Listed</th> </tr> </thead> <tbody> Index: elementdesc.txt =================================================================== RCS file: /sources/public/html5/html-author/utils/elementdesc.txt,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- elementdesc.txt 9 Mar 2009 14:56:03 -0000 1.8 +++ elementdesc.txt 11 Mar 2009 14:09:31 -0000 1.9 @@ -611,7 +611,7 @@ [colgroup] desc=The <code>colgroup</code> element represents a <span title="concept-column-group">group</span> of one or more <span title="concept-column">columns</span> in the <code>table</code> that is its parent, if it has a parent and that is a <code>table</code> element. meaning=Table column group -start=required +start=optional end=optional status=active html4=strict Index: elements.html =================================================================== RCS file: /sources/public/html5/html-author/utils/elements.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- elements.html 9 Mar 2009 15:56:41 -0000 1.1 +++ elements.html 11 Mar 2009 14:09:31 -0000 1.2 @@ -2859,7 +2859,7 @@ <p class="desc">The <code>colgroup</code> element represents a <span title="concept-column-group">group</span> of one or more <span title="concept-column">columns</span> in the <code>table</code> that is its parent, if it has a parent and that is a <code>table</code> element.</p> <dl class="html-tags"> - <dt>Start tag:</dt> <dd>required</dd> + <dt>Start tag:</dt> <dd>optional</dd> <dt>End tag:</dt> <dd>optional</dd> </dl>
Received on Wednesday, 11 March 2009 14:09:42 UTC