- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 06 Oct 2008 10:37:16 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv6981 Modified Files: Overview.html Log Message: WF2: select.options (whatwg r2288) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1460 retrieving revision 1.1461 diff -u -d -r1.1460 -r1.1461 --- Overview.html 6 Oct 2008 10:31:36 -0000 1.1460 +++ Overview.html 6 Oct 2008 10:37:14 -0000 1.1461 @@ -21093,7 +21093,7 @@ readonly attribute DOMString <a href=#dom-select-type title=dom-select-type>type</a>; - readonly attribute <a href=#htmloptionscollection-0>HTMLOptionsCollection</a> <span title=dom-select-options>options</span>; + readonly attribute <a href=#htmloptionscollection-0>HTMLOptionsCollection</a> <a href=#dom-select-options title=dom-select-options>options</a>; attribute unsigned long <span title=dom-select-length>length</span>; [IndexGetter] <a href=#htmlelement>HTMLElement</a> <span title=dom-select-XXX9>XXX9</span>(in unsigned long index); @@ -21117,12 +21117,12 @@ selecting amongst a set of options.<p>The <dfn id=attr-select-multiple title=attr-select-multiple><code>multiple</code></dfn> attribute is a <a href=#boolean-attribute>boolean attribute</a>. If the attribute is present, then the <code><a href=#the-select-element>select</a></code> element represents a control - for selecting zero or more options from the <a href=#select-option-list title=select-option-list>list of options</a>. If the attribute - is absent, then the <code><a href=#the-select-element>select</a></code> element represents a control - for selecting a single option from the <a href=#select-option-list title=select-option-list>list of options</a>.<p>The <dfn id=select-option-list title=select-option-list>list of options</dfn> for a - <code><a href=#the-select-element>select</a></code> element consists of all the <code><a href=#the-option-element>option</a></code> - element children of the <code><a href=#the-select-element>select</a></code> element, and all the - <code><a href=#the-option-element>option</a></code> element children of all the + for selecting zero or more options from the <a href=#concept-select-option-list title=concept-select-option-list>list of options</a>. If the + attribute is absent, then the <code><a href=#the-select-element>select</a></code> element represents + a control for selecting a single option from the <a href=#concept-select-option-list title=concept-select-option-list>list of options</a>.<p>The <dfn id=concept-select-option-list title=concept-select-option-list>list of options</dfn> + for a <code><a href=#the-select-element>select</a></code> element consists of all the + <code><a href=#the-option-element>option</a></code> element children of the <code><a href=#the-select-element>select</a></code> + element, and all the <code><a href=#the-option-element>option</a></code> element children of all the <code><a href=#the-optgroup-element>optgroup</a></code> element children of the <code><a href=#the-select-element>select</a></code> element, in <a href=#tree-order>tree order</a>.<p>The <dfn id=attr-select-size title=attr-select-size><code>size</code></dfn> attribute gives the number of options to show to the user. The <code title=attr-input-size><a href=#attr-input-size>size</a></code> attribute, if specified, must @@ -21148,8 +21148,11 @@ attribute controls focus.<p>The <dfn id=dom-select-type title=dom-select-type><code>type</code></dfn> attribute, on getting, must return the string "<code title="">select-one</code>" if the <code title=attr-select-multiple><a href=#attr-select-multiple>multiple</a></code> attribute is absent, and the string "<code title="">select-multiple</code>" if the <code title=attr-select-multiple><a href=#attr-select-multiple>multiple</a></code> attribute is - present.</p><!-- XXX - readonly attribute <span>HTMLOptionsCollection</span> <span title="dom-select-options">options</span>; + present.<p>The <dfn id=dom-select-options title=dom-select-options><code>options</code></dfn> + attribute must return an <code><a href=#htmloptionscollection-0>HTMLOptionsCollection</a></code> rooted + at the <code><a href=#the-select-element>select</a></code> node, whose filter matches the elements + in the <a href=#concept-select-option-list title=concept-select-option-list>list of + options</a>.</p><!-- XXX attribute unsigned long <span title="dom-select-length">length</span>; [IndexGetter] <span>HTMLElement</span> <span title="dom-select-XXX9">XXX9</span>(in unsigned long index); @@ -21179,7 +21182,7 @@ <dt>DOM interface:</dt> <dd> <pre class=idl>interface <dfn id=htmldatalistelement>HTMLDataListElement</dfn> : <a href=#htmlelement>HTMLElement</a> { - readonly attribute <a href=#htmloptionscollection-0>HTMLOptionsCollection</a> <span title=dom-select-options>options</span>; + readonly attribute <a href=#htmloptionscollection-0>HTMLOptionsCollection</a> <a href=#dom-select-options title=dom-select-options>options</a>; };</pre> </dd> </dl><p class=XXX>...<p><strong>Constraint validation:</strong> If an element has a
Received on Monday, 6 October 2008 10:37:50 UTC