- From: poot <cvsmail@w3.org>
- Date: Tue, 2 Dec 2008 20:36:09 +0900 (JST)
- To: public-html-diffs@w3.org
WF2: Sigh. <legend> can now be associated with forms. (whatwg r2526) HTMLLegendElement http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#htmllegendelement buttons http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#concept-button 4.12 Miscellaneous elements http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#miscellaneous-elements Labelable http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#category-label submit buttons http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#concept-submit-button 4.11.6.6 Using the bb element to define a command http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#using-the-bb-element-to-define-a-command 4.12.2 The div element http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#the-div-element 4.10.1 The form element http://people.w3.org/mike/diffs/html5/spec/Overview.1.1697.html#the-form-element http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1696&r2=1.1697&f=h http://html5.org/tools/web-apps-tracker?from=2525&to=2526 =================================================================== 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:36:46 UTC