html5/spec Overview.html,1.1696,1.1697

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv5346

Modified Files:
	Overview.html 
Log Message:
WF2: Sigh. <legend> can now be associated with forms. (whatwg r2526)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1696
retrieving revision 1.1697
diff -u -d -r1.1696 -r1.1697
--- Overview.html	2 Dec 2008 11:27:02 -0000	1.1696
+++ Overview.html	2 Dec 2008 11:33:36 -0000	1.1697
@@ -18800,9 +18800,11 @@
 
   </dl><p>In addition, some <a href=#category-submit title=category-submit>submittable
   elements</a> can be, depending on their attributes, <dfn id=concept-button title=concept-button>buttons</dfn>. The prose below defines when
-  an element is a button. Some buttons are specifically <dfn id=concept-submit-button title=concept-submit-button>submit buttons</dfn>.<p class=note>The <code><a href=#the-object-element>object</a></code> element is also a
-  <a href=#form-associated-element>form-associated element</a> and can, with the use of a
-  suitable <a href=#plugin>plugin</a>, partake in form submission.<h4 id=the-form-element><span class=secno>4.10.1 </span>The <dfn><code>form</code></dfn> element</h4><dl class=element><dt>Categories</dt>
+  an element is a button. Some buttons are specifically <dfn id=concept-submit-button title=concept-submit-button>submit buttons</dfn>.<p class=note>The <code><a href=#the-object-element>object</a></code> amd <code><a href=#the-legend-element>legend</a></code>
+  elements are also <a href=#form-associated-element title="form-associated
+  element">form-associated elements</a>. With the use of a suitable
+  <a href=#plugin>plugin</a>, the <code><a href=#the-object-element>object</a></code> element can even
+  partake in form submission.<h4 id=the-form-element><span class=secno>4.10.1 </span>The <dfn><code>form</code></dfn> element</h4><dl class=element><dt>Categories</dt>
    <dd><a href=#flow-content-0>Flow content</a>.</dd>
    <dt>Contexts in which this element may be used:</dt>
    <dd>Where <a href=#flow-content-0>flow content</a> is expected.</dd>
@@ -26072,7 +26074,7 @@
   command is to perform the <i>action</i> of the <code><a href=#the-bb-element>bb</a></code>
   element's <code title=attr-bb-type><a href=#attr-bb-type>type</a></code> attribute's
   state.<h3 id=miscellaneous-elements><span class=secno>4.12 </span>Miscellaneous elements</h3><h4 id=the-legend-element><span class=secno>4.12.1 </span>The <dfn><code>legend</code></dfn> element</h4><dl class=element><dt>Categories</dt>
-   <dd>None.</dd>
+   <dd><a href=#form-associated-element>Form-associated element</a>.</dd>
    <dt>Contexts in which this element may be used:</dt>
    <dd>As the first child of a <code><a href=#the-fieldset-element>fieldset</a></code> element.</dd>
    <dd>As the first child of a <code><a href=#the-details-element>details</a></code> element.</dd>
@@ -26080,12 +26082,18 @@
    <dt>Content model:</dt>
    <dd><a href=#phrasing-content-0>Phrasing content</a>.</dd>
    <dt>Element-specific attributes:</dt>
-   <dd>None.</dd>
+   <dd><code title=attr-fae-form><a href=#attr-fae-form>form</a></code></dd>
    <dt>DOM interface:</dt>
-   <dd>Uses <code><a href=#htmlelement>HTMLElement</a></code>.</dd>
+   <dd>
+<pre class=idl>interface <dfn id=htmllegendelement>HTMLLegendElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
+  readonly attribute <a href=#htmlformelement>HTMLFormElement</a> <a href=#dom-fae-form title=dom-fae-form>form</a>;
+};</pre>
+   </dd> 
   </dl><p>The <code><a href=#the-legend-element>legend</a></code> element represents a title or explanatory
   caption for the rest of the contents of the <code><a href=#the-legend-element>legend</a></code>
-  element's parent element.<h4 id=the-div-element><span class=secno>4.12.2 </span>The <dfn><code>div</code></dfn> element</h4><dl class=element><dt>Categories</dt>
+  element's parent element.<p>The <code title=attr-fae-form><a href=#attr-fae-form>form</a></code> attribute is used to
+  explicitly associate the <code><a href=#the-label-element>label</a></code> element with its
+  <a href=#form-owner>form owner</a>.<h4 id=the-div-element><span class=secno>4.12.2 </span>The <dfn><code>div</code></dfn> element</h4><dl class=element><dt>Categories</dt>
    <dd><a href=#flow-content-0>Flow content</a>.</dd>
    <dt>Contexts in which this element may be used:</dt>
    <dd>Where <a href=#flow-content-0>flow content</a> is expected.</dd>

Received on Tuesday, 2 December 2008 11:33:47 UTC