- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 12 Oct 2009 07:07:27 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv5160
Modified Files:
Overview.html
Log Message:
Make <legend> optional. (whatwg r4115)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3273
retrieving revision 1.3274
diff -u -d -r1.3273 -r1.3274
--- Overview.html 12 Oct 2009 06:29:10 -0000 1.3273
+++ Overview.html 12 Oct 2009 07:07:24 -0000 1.3274
@@ -27490,7 +27490,7 @@
<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>
@@ -27515,9 +27515,9 @@
};</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>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>The <dfn id="attr-fieldset-disabled" title="attr-fieldset-disabled"><code>disabled</code></dfn>
+ of form controls optionally grouped under a common name.<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, if
+ any. The remainder of the descendants form the group.<p>The <dfn id="attr-fieldset-disabled" title="attr-fieldset-disabled"><code>disabled</code></dfn>
attribute, when specified, causes all the form control descendants
of the <code><a href="#the-fieldset-element">fieldset</a></code> element, excluding those that are
descendants of the <code><a href="#the-fieldset-element">fieldset</a></code> element's first
Received on Monday, 12 October 2009 07:07:31 UTC