Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ac] (0) Make <legend> optional.
git-svn-id: http://svn.whatwg.org/webapps@4115 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 12, 2009
1 parent db548c5 commit 2a4fd02
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions complete.html
Expand Up @@ -31029,7 +31029,7 @@ <h4 id=the-fieldset-element><span class=secno>4.10.2 </span>The <dfn><code>field
<dt>Contexts in which this element may be used:</dt>
<dd>Where <a href=#flow-content>flow content</a> is expected.</dd>
<dt>Content model:</dt>
<dd>One <code><a href=#the-legend-element>legend</a></code> element followed by <a href=#flow-content>flow content</a>.</dd>
<dd>Optionally a <code><a href=#the-legend-element>legend</a></code> element, followed by <a href=#flow-content>flow content</a>.</dd>
<dt>Content attributes:</dt>
<dd><a href=#global-attributes>Global attributes</a></dd>
<dd><code title=attr-fieldset-disabled><a href=#attr-fieldset-disabled>disabled</a></code></dd>
Expand All @@ -31054,11 +31054,11 @@ <h4 id=the-fieldset-element><span class=secno>4.10.2 </span>The <dfn><code>field
};</pre>
</dd>
</dl><p>The <code><a href=#the-fieldset-element>fieldset</a></code> element <a href=#represents>represents</a> a set
of form controls grouped under a common name.</p>
of form controls optionally grouped under a common name.</p>

<p>The name of the group is given by the first <code><a href=#the-legend-element>legend</a></code>
element that is a child of the <code><a href=#the-fieldset-element>fieldset</a></code> element. The
remainder of the descendants form the group.</p>
element that is a child of the <code><a href=#the-fieldset-element>fieldset</a></code> element, if
any. The remainder of the descendants form the group.</p>

<p>The <dfn id=attr-fieldset-disabled title=attr-fieldset-disabled><code>disabled</code></dfn>
attribute, when specified, causes all the form control descendants
Expand Down
8 changes: 4 additions & 4 deletions index
Expand Up @@ -30865,7 +30865,7 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H
<dt>Contexts in which this element may be used:</dt>
<dd>Where <a href=#flow-content>flow content</a> is expected.</dd>
<dt>Content model:</dt>
<dd>One <code><a href=#the-legend-element>legend</a></code> element followed by <a href=#flow-content>flow content</a>.</dd>
<dd>Optionally a <code><a href=#the-legend-element>legend</a></code> element, followed by <a href=#flow-content>flow content</a>.</dd>
<dt>Content attributes:</dt>
<dd><a href=#global-attributes>Global attributes</a></dd>
<dd><code title=attr-fieldset-disabled><a href=#attr-fieldset-disabled>disabled</a></code></dd>
Expand All @@ -30890,11 +30890,11 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H
};</pre>
</dd>
</dl><p>The <code><a href=#the-fieldset-element>fieldset</a></code> element <a href=#represents>represents</a> a set
of form controls grouped under a common name.</p>
of form controls optionally grouped under a common name.</p>

<p>The name of the group is given by the first <code><a href=#the-legend-element>legend</a></code>
element that is a child of the <code><a href=#the-fieldset-element>fieldset</a></code> element. The
remainder of the descendants form the group.</p>
element that is a child of the <code><a href=#the-fieldset-element>fieldset</a></code> element, if
any. The remainder of the descendants form the group.</p>

<p>The <dfn id=attr-fieldset-disabled title=attr-fieldset-disabled><code>disabled</code></dfn>
attribute, when specified, causes all the form control descendants
Expand Down
8 changes: 4 additions & 4 deletions source
Expand Up @@ -34264,7 +34264,7 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
<dt>Contexts in which this element may be used:</dt>
<dd>Where <span>flow content</span> is expected.</dd>
<dt>Content model:</dt>
<dd>One <code>legend</code> element followed by <span>flow content</span>.</dd>
<dd>Optionally a <code>legend</code> element, followed by <span>flow content</span>.</dd>
<dt>Content attributes:</dt>
<dd><span>Global attributes</span></dd>
<dd><code title="attr-fieldset-disabled">disabled</code></dd>
Expand All @@ -34291,11 +34291,11 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
</dl>

<p>The <code>fieldset</code> element <span>represents</span> a set
of form controls grouped under a common name.</p>
of form controls optionally grouped under a common name.</p>

<p>The name of the group is given by the first <code>legend</code>
element that is a child of the <code>fieldset</code> element. The
remainder of the descendants form the group.</p>
element that is a child of the <code>fieldset</code> element, if
any. The remainder of the descendants form the group.</p>

<p>The <dfn
title="attr-fieldset-disabled"><code>disabled</code></dfn>
Expand Down

0 comments on commit 2a4fd02

Please sign in to comment.