[html5] r3039 - [ac] (0) Rename <header> to <hgroup> and restrict it just to supporting subheadings.
whatwg at whatwg.org
whatwg at whatwg.org
Thu Apr 30 10:37:31 PDT 2009
Author: ianh
Date: 2009-04-30 10:37:30 -0700 (Thu, 30 Apr 2009)
New Revision: 3039
Modified:
index
source
Log:
[ac] (0) Rename <header> to <hgroup> and restrict it just to supporting subheadings.
Modified: index
===================================================================
--- index 2009-04-30 07:02:42 UTC (rev 3038)
+++ index 2009-04-30 17:37:30 UTC (rev 3039)
@@ -384,7 +384,7 @@
<code>h3</code>, <code>h4</code>,
<code>h5</code>, and <code>h6</code>
elements</a></li>
- <li><a href=#the-header-element><span class=secno>4.4.7 </span>The <code>header</code> element</a></li>
+ <li><a href=#the-hgroup-element><span class=secno>4.4.7 </span>The <code>hgroup</code> element</a></li>
<li><a href=#the-footer-element><span class=secno>4.4.8 </span>The <code>footer</code> element</a></li>
<li><a href=#the-address-element><span class=secno>4.4.9 </span>The <code>address</code> element</a></li>
<li><a href=#headings-and-sections><span class=secno>4.4.10 </span>Headings and sections</a>
@@ -7723,14 +7723,14 @@
<h2>Leading the way in widget design since 1432</h2>
...</pre>
- <p>The <code><a href=#the-header-element>header</a></code> element should be used in these kinds of
+ <p>The <code><a href=#the-hgroup-element>hgroup</a></code> element should be used in these kinds of
situations:</p>
<pre><body>
- <header>
+ <hgroup>
<h1>ABC Company</h1>
<h2>Leading the way in widget design since 1432</h2>
- </header>
+ </hgroup>
...</pre>
</div>
@@ -12128,10 +12128,10 @@
Web page) about apples, containing two short sections.</p>
<pre><article>
- <header>
+ <hgroup>
<h1>Apples</h1>
- <p>Tasty, delicious fruit!</p>
- </header>
+ <h2>Tasty, delicious fruit!</h2>
+ </hgroup>
<p>The apple is the pomaceous fruit of the apple tree.</p>
<section>
<h1>Red Delicious</h1>
@@ -12182,12 +12182,12 @@
navigation section.</p>
<pre><body>
- <header>
+ <!--<header>-->
<h1>Wake up sheeple!</h1>
<p><a href="news.html">News</a> -
<a href="blog.html">Blog</a> -
<a href="forums.html">Forums</a></p>
- </header>
+ <!--</header>-->
<nav>
<h1>Navigation</h1>
<ul>
@@ -12344,7 +12344,7 @@
elements with the same name have equal rank.</p>
- <h4 id=the-header-element><span class=secno>4.4.7 </span>The <dfn><code>header</code></dfn> element</h4>
+ <h4 id=the-hgroup-element><span class=secno>4.4.7 </span>The <dfn><code>hgroup</code></dfn> element</h4>
<dl class=element><dt>Categories</dt>
<dd><a href=#flow-content-0>Flow content</a>.</dd>
@@ -12352,39 +12352,33 @@
<dt>Contexts in which this element may be used:</dt>
<dd>Where <a href=#flow-content-0>flow content</a> is expected.</dd>
<dt>Content model:</dt>
- <dd><a href=#flow-content-0>Flow content</a>, including at least one descendant
- that is <a href=#heading-content-0>heading content</a>, but no <a href=#sectioning-content-0>sectioning
- content</a> descendants, no <code><a href=#the-header-element>header</a></code> element
- descendants, and no <code><a href=#the-footer-element>footer</a></code> element descendants.</dd>
+ <dd>One or more <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h2</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h3</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h4</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h5</a></code>, and/or <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code> elements.</dd>
<dt>Content attributes:</dt>
<dd><a href=#global-attributes>Global attributes</a></dd>
<dt>DOM interface:</dt>
<dd>Uses <code><a href=#htmlelement>HTMLElement</a></code>.</dd>
- </dl><p>The <code><a href=#the-header-element>header</a></code> element <a href=#represents>represents</a> the
- header of a section. The element is typically used to group a set of
+ </dl><p>The <code><a href=#the-hgroup-element>hgroup</a></code> element <a href=#represents>represents</a> the
+ header of a section. The element is used to group a set of
<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code>–<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code> elements to mark up a page's
- title with its subtitle or tagline. However, <code><a href=#the-header-element>header</a></code>
- elements may contain more than just the section's headings and
- subheadings — for example it would be reasonable for the
- header to include version history information.
+ title with its subtitle or tagline.</p>
<p>For the purposes of document summaries, outlines, and the like,
- the text of <code><a href=#the-header-element>header</a></code> elements is defined to be the text
+ the text of <code><a href=#the-hgroup-element>hgroup</a></code> elements is defined to be the text
of the highest <a href=#rank title=rank>ranked</a>
<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code>–<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code> element descendant of the
- <code><a href=#the-header-element>header</a></code> element, if there are any such elements, and the
+ <code><a href=#the-hgroup-element>hgroup</a></code> element, if there are any such elements, and the
first such element if there are multiple elements with that
<a href=#rank>rank</a>. If there are no such elements, then the text of
- the <code><a href=#the-header-element>header</a></code> element is the empty string.</p>
+ the <code><a href=#the-hgroup-element>hgroup</a></code> element is the empty string.</p>
- <p>Other heading elements in the <code><a href=#the-header-element>header</a></code> element
+ <p>Other heading elements in the <code><a href=#the-hgroup-element>hgroup</a></code> element
indicate subheadings or subtitles.</p>
- <p>The <a href=#rank>rank</a> of a <code><a href=#the-header-element>header</a></code> element is the
+ <p>The <a href=#rank>rank</a> of a <code><a href=#the-hgroup-element>hgroup</a></code> element is the
same as for an <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code> element (the highest rank).</p>
<p>The section on <a href=#headings-and-sections>headings and sections</a>
- defines how <code><a href=#the-header-element>header</a></code> elements are assigned to individual
+ defines how <code><a href=#the-hgroup-element>hgroup</a></code> elements are assigned to individual
sections.</p>
<div class=example>
@@ -12394,24 +12388,31 @@
header in an application extracting header data and ignoring
subheadings.</p>
- <pre><header>
+ <pre><hgroup>
<h1><strong>The reality dysfunction</strong></h1>
<h2>Space is not the only void</h2>
-</header></pre>
+</hgroup></pre>
- <pre><header>
+ <pre><hgroup>
<h1><strong>Dr. Strangelove</strong></h1>
<h2>Or: How I Learned to Stop Worrying and Love the Bomb</h2>
-</header></pre>
+</hgroup></pre>
+<!--
+ The <code>header</code> element may contain more than just the
+ section's headings and subheadings — for example it would be
+ reasonable for the header to include version history information.
+
<pre><header>
<p>Welcome to...</p>
<h1><strong>Voidwars!</strong></h1>
</header></pre>
<pre><header>
- <h1><strong>Scalable Vector Graphics (SVG) 1.2</strong></h1>
- <h2>W3C Working Draft 27 October 2004</h2>
+ <hgroup>
+ <h1><strong>Scalable Vector Graphics (SVG) 1.2</strong></h1>
+ <h2>W3C Working Draft 27 October 2004</h2>
+ </hgroup>
<dl>
<dt>This version:</dt>
<dd><a href="http://www.w3.org/TR/2004/WD-SVG12-20041027/">http://www.w3.org/TR/2004/WD-SVG12-20041027/</a></dd>
@@ -12428,6 +12429,7 @@
</dl>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notic <em>...</em>
</header></pre>
+-->
</div>
@@ -12465,10 +12467,10 @@
<pre><body>
<footer><a href="../">Back to index...</a></footer>
- <header>
+ <hgroup>
<h1>Lorem ipsum</h1>
<h2>The ipsum of all lorems</h2>
- </header>
+ </hgroup>
<p>A dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
@@ -12552,7 +12554,7 @@
<h4 id=headings-and-sections><span class=secno>4.4.10 </span><dfn>Headings and sections</dfn></h4>
<p>The <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code>–<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code> elements and the
- <code><a href=#the-header-element>header</a></code> element are headings.</p>
+ <code><a href=#the-hgroup-element>hgroup</a></code> element are headings.</p>
<p>The first element of <a href=#heading-content-0>heading content</a> in an element
of <a href=#sectioning-content-0>sectioning content</a> <a href=#represents>represents</a> the
@@ -17466,33 +17468,35 @@
it means; the icon is supposed to be self-explanatory. In those
cases, an equivalent textual label must be given in the <code title=attr-img-alt><a href=#attr-img-alt>alt</a></code> attribute.</p>
- <div class=example>
+<!--
+ <div class="example">
<p>Here, posts on a news site are labeled with an icon
indicating their topic.</p>
- <pre><body>
- <article>
- <header>
- <h1>Ratatouille wins <i>Best Movie of the Year</i> award</h1>
- <p><strong><img src="movies.png" alt="Movies"></strong></p>
- </header>
- <p>Pixar has won yet another <i>Best Movie of the Year</i> award,
- making this its 8th win in the last 12 years.</p>
- </article>
- <article>
- <header>
- <h1>Latest TWiT episode is online</h1>
- <p><strong><img src="podcasts.png" alt="Podcasts"></strong></p>
- </header>
- <p>The latest TWiT episode has been posted, in which we hear
+ <pre><body>
+ <article>
+ <header>
+ <h1>Ratatouille wins <i>Best Movie of the Year</i> award</h1>
+ <p><strong><img src="movies.png" alt="Movies"></strong></p>
+ </header>
+ <p>Pixar has won yet another <i>Best Movie of the Year</i> award,
+ making this its 8th win in the last 12 years.</p>
+ </article>
+ <article>
+ <header>
+ <h1>Latest TWiT episode is online</h1>
+ <p><strong><img src="podcasts.png" alt="Podcasts"></strong></p>
+ </header>
+ <p>The latest TWiT episode has been posted, in which we hear
several tech news stories as well as learning much more about the
iPhone. This week, the panelists compare how reflective their
- iPhones' Apple logos are.</p>
- </article>
-</body></pre>
+ iPhones' Apple logos are.</p>
+ </article>
+</body></pre>
</div>
+-->
<p>Many pages include logos, insignia, flags, or emblems, which
stand for a particular entity such as a company, organization,
@@ -19884,6 +19888,8 @@
- an event that reports playback difficulties?
- an arbitrary quality metric?
* bufferingRate/bufferingThrottled (see v3BUF)
+ * events for when the user agent's controls get shown or hidden
+ so that the author's controls can get away of the UA's
-->
<p><a href=#media-element title="media element">Media elements</a> are used to
@@ -52576,7 +52582,7 @@
<code><a href=#the-div-element>div</a></code>, <code><a href=#the-dl-element>dl</a></code>, <code><a href=#the-fieldset-element>fieldset</a></code>,
<code><a href=#the-footer-element>footer</a></code>, <code><a href=#the-form-element>form</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code>,
<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h2</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h3</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h4</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h5</a></code>,
- <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code>, <code><a href=#the-header-element>header</a></code>, <code><a href=#the-hr-element>hr</a></code>,
+ <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code>, <code><a href=#the-hgroup-element>hgroup</a></code>, <code><a href=#the-hr-element>hr</a></code>,
<code><a href=#menus>menu</a></code>, <code><a href=#the-nav-element>nav</a></code>, <code><a href=#the-ol-element>ol</a></code>,
<code><a href=#the-p-element>p</a></code>, <code><a href=#the-pre-element>pre</a></code>, <code><a href=#the-section-element>section</a></code>,
<code><a href=#the-table-element>table</a></code>, or <code><a href=#the-ul-element>ul</a></code>, element, or if there is no
@@ -53671,7 +53677,7 @@
<code><a href=#the-footer-element>footer</a></code>, <code><a href=#the-form-element>form</a></code>, <code>frame</code>,
<code>frameset</code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h1</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h2</a></code>,
<code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h3</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h4</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h5</a></code>, <code><a href=#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>h6</a></code>,
- <code><a href=#the-head-element>head</a></code>, <code><a href=#the-header-element>header</a></code>, <code><a href=#the-hr-element>hr</a></code>,
+ <code><a href=#the-head-element>head</a></code>, <code><a href=#the-hgroup-element>hgroup</a></code>, <code><a href=#the-hr-element>hr</a></code>,
<code><a href=#the-iframe-element>iframe</a></code>, <!-- <code>image</code>, (commented out
because this isn't an element that can end up on the stack, so it
doesn't matter) --> <code><a href=#the-img-element>img</a></code>, <code><a href=#the-input-element>input</a></code>,
@@ -56295,7 +56301,7 @@
<!-- the normal ones -->
<dt>A start tag whose tag name is one of: "address", "article",
"aside", "blockquote", "center", "datagrid", "details", "dialog",
- "dir", "div", "dl", "fieldset", "figure", "footer", "header",
+ "dir", "div", "dl", "fieldset", "figure", "footer", "hgroup",
"menu", "nav", "ol", "p", "section", "ul"</dt>
<dd>
@@ -56498,7 +56504,7 @@
<!-- the normal ones -->
<dt>An end tag whose tag name is one of: "address", "article",
"aside", "blockquote", "center", "datagrid", "details", "dialog",
- "dir", "div", "dl", "fieldset", "figure", "footer", "header",
+ "dir", "div", "dl", "fieldset", "figure", "footer", "hgroup",
"listing", "menu", "nav", "ol", "pre", "section", "ul"</dt>
<dd>
Modified: source
===================================================================
--- source 2009-04-30 07:02:42 UTC (rev 3038)
+++ source 2009-04-30 17:37:30 UTC (rev 3039)
@@ -7944,14 +7944,14 @@
<h2>Leading the way in widget design since 1432</h2>
...</pre>
- <p>The <code>header</code> element should be used in these kinds of
+ <p>The <code>hgroup</code> element should be used in these kinds of
situations:</p>
<pre><body>
- <header>
+ <hgroup>
<h1>ABC Company</h1>
<h2>Leading the way in widget design since 1432</h2>
- </header>
+ </hgroup>
...</pre>
</div>
@@ -12961,10 +12961,10 @@
Web page) about apples, containing two short sections.</p>
<pre><article>
- <header>
+ <hgroup>
<h1>Apples</h1>
- <p>Tasty, delicious fruit!</p>
- </header>
+ <h2>Tasty, delicious fruit!</h2>
+ </hgroup>
<p>The apple is the pomaceous fruit of the apple tree.</p>
<section>
<h1>Red Delicious</h1>
@@ -13018,12 +13018,12 @@
navigation section.</p>
<pre><body>
- <header>
+ <!--<header>-->
<h1>Wake up sheeple!</h1>
<p><a href="news.html">News</a> -
<a href="blog.html">Blog</a> -
<a href="forums.html">Forums</a></p>
- </header>
+ <!--</header>-->
<nav>
<h1>Navigation</h1>
<ul>
@@ -13190,7 +13190,7 @@
elements with the same name have equal rank.</p>
- <h4>The <dfn><code>header</code></dfn> element</h4>
+ <h4>The <dfn><code>hgroup</code></dfn> element</h4>
<dl class="element">
<dt>Categories</dt>
@@ -13199,41 +13199,35 @@
<dt>Contexts in which this element may be used:</dt>
<dd>Where <span>flow content</span> is expected.</dd>
<dt>Content model:</dt>
- <dd><span>Flow content</span>, including at least one descendant
- that is <span>heading content</span>, but no <span>sectioning
- content</span> descendants, no <code>header</code> element
- descendants, and no <code>footer</code> element descendants.</dd>
+ <dd>One or more <code>h1</code>, <code>h2</code>, <code>h3</code>, <code>h4</code>, <code>h5</code>, and/or <code>h6</code> elements.</dd>
<dt>Content attributes:</dt>
<dd><span>Global attributes</span></dd>
<dt>DOM interface:</dt>
<dd>Uses <code>HTMLElement</code>.</dd>
</dl>
- <p>The <code>header</code> element <span>represents</span> the
- header of a section. The element is typically used to group a set of
+ <p>The <code>hgroup</code> element <span>represents</span> the
+ header of a section. The element is used to group a set of
<code>h1</code>–<code>h6</code> elements to mark up a page's
- title with its subtitle or tagline. However, <code>header</code>
- elements may contain more than just the section's headings and
- subheadings — for example it would be reasonable for the
- header to include version history information.
+ title with its subtitle or tagline.</p>
<p>For the purposes of document summaries, outlines, and the like,
- the text of <code>header</code> elements is defined to be the text
+ the text of <code>hgroup</code> elements is defined to be the text
of the highest <span title="rank">ranked</span>
<code>h1</code>–<code>h6</code> element descendant of the
- <code>header</code> element, if there are any such elements, and the
+ <code>hgroup</code> element, if there are any such elements, and the
first such element if there are multiple elements with that
<span>rank</span>. If there are no such elements, then the text of
- the <code>header</code> element is the empty string.</p>
+ the <code>hgroup</code> element is the empty string.</p>
- <p>Other heading elements in the <code>header</code> element
+ <p>Other heading elements in the <code>hgroup</code> element
indicate subheadings or subtitles.</p>
- <p>The <span>rank</span> of a <code>header</code> element is the
+ <p>The <span>rank</span> of a <code>hgroup</code> element is the
same as for an <code>h1</code> element (the highest rank).</p>
<p>The section on <span>headings and sections</span>
- defines how <code>header</code> elements are assigned to individual
+ defines how <code>hgroup</code> elements are assigned to individual
sections.</p>
<div class="example">
@@ -13243,24 +13237,31 @@
header in an application extracting header data and ignoring
subheadings.</p>
- <pre><header>
+ <pre><hgroup>
<h1><strong>The reality dysfunction</strong></h1>
<h2>Space is not the only void</h2>
-</header></pre>
+</hgroup></pre>
- <pre><header>
+ <pre><hgroup>
<h1><strong>Dr. Strangelove</strong></h1>
<h2>Or: How I Learned to Stop Worrying and Love the Bomb</h2>
-</header></pre>
+</hgroup></pre>
+<!--
+ The <code>header</code> element may contain more than just the
+ section's headings and subheadings — for example it would be
+ reasonable for the header to include version history information.
+
<pre><header>
<p>Welcome to...</p>
<h1><strong>Voidwars!</strong></h1>
</header></pre>
<pre><header>
- <h1><strong>Scalable Vector Graphics (SVG) 1.2</strong></h1>
- <h2>W3C Working Draft 27 October 2004</h2>
+ <hgroup>
+ <h1><strong>Scalable Vector Graphics (SVG) 1.2</strong></h1>
+ <h2>W3C Working Draft 27 October 2004</h2>
+ </hgroup>
<dl>
<dt>This version:</dt>
<dd><a href="http://www.w3.org/TR/2004/WD-SVG12-20041027/">http://www.w3.org/TR/2004/WD-SVG12-20041027/</a></dd>
@@ -13277,6 +13278,7 @@
</dl>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notic <em>...</em>
</header></pre>
+-->
</div>
@@ -13317,10 +13319,10 @@
<pre><body>
<footer><a href="../">Back to index...</a></footer>
- <header>
+ <hgroup>
<h1>Lorem ipsum</h1>
<h2>The ipsum of all lorems</h2>
- </header>
+ </hgroup>
<p>A dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
@@ -13409,7 +13411,7 @@
<h4><dfn>Headings and sections</dfn></h4>
<p>The <code>h1</code>–<code>h6</code> elements and the
- <code>header</code> element are headings.</p>
+ <code>hgroup</code> element are headings.</p>
<p>The first element of <span>heading content</span> in an element
of <span>sectioning content</span> <span>represents</span> the
@@ -18766,6 +18768,7 @@
cases, an equivalent textual label must be given in the <code
title="attr-img-alt">alt</code> attribute.</p>
+<!--
<div class="example">
<p>Here, posts on a news site are labeled with an icon
@@ -18793,6 +18796,7 @@
</body></pre>
</div>
+-->
<p>Many pages include logos, insignia, flags, or emblems, which
stand for a particular entity such as a company, organization,
@@ -21414,6 +21418,8 @@
- an event that reports playback difficulties?
- an arbitrary quality metric?
* bufferingRate/bufferingThrottled (see v3BUF)
+ * events for when the user agent's controls get shown or hidden
+ so that the author's controls can get away of the UA's
-->
<p><span title="media element">Media elements</span> are used to
@@ -64731,7 +64737,7 @@
<code>div</code>, <code>dl</code>, <code>fieldset</code>,
<code>footer</code>, <code>form</code>, <code>h1</code>,
<code>h2</code>, <code>h3</code>, <code>h4</code>, <code>h5</code>,
- <code>h6</code>, <code>header</code>, <code>hr</code>,
+ <code>h6</code>, <code>hgroup</code>, <code>hr</code>,
<code>menu</code>, <code>nav</code>, <code>ol</code>,
<code>p</code>, <code>pre</code>, <code>section</code>,
<code>table</code>, or <code>ul</code>, element, or if there is no
@@ -65976,7 +65982,7 @@
<code>footer</code>, <code>form</code>, <code>frame</code>,
<code>frameset</code>, <code>h1</code>, <code>h2</code>,
<code>h3</code>, <code>h4</code>, <code>h5</code>, <code>h6</code>,
- <code>head</code>, <code>header</code>, <code>hr</code>,
+ <code>head</code>, <code>hgroup</code>, <code>hr</code>,
<code>iframe</code>, <!-- <code>image</code>, (commented out
because this isn't an element that can end up on the stack, so it
doesn't matter) --> <code>img</code>, <code>input</code>,
@@ -68931,7 +68937,7 @@
<!-- the normal ones -->
<dt>A start tag whose tag name is one of: "address", "article",
"aside", "blockquote", "center", "datagrid", "details", "dialog",
- "dir", "div", "dl", "fieldset", "figure", "footer", "header",
+ "dir", "div", "dl", "fieldset", "figure", "footer", "hgroup",
"menu", "nav", "ol", "p", "section", "ul"</dt>
<dd>
@@ -69142,7 +69148,7 @@
<!-- the normal ones -->
<dt>An end tag whose tag name is one of: "address", "article",
"aside", "blockquote", "center", "datagrid", "details", "dialog",
- "dir", "div", "dl", "fieldset", "figure", "footer", "header",
+ "dir", "div", "dl", "fieldset", "figure", "footer", "hgroup",
"listing", "menu", "nav", "ol", "pre", "section", "ul"</dt>
<dd>
More information about the Commit-Watchers
mailing list