- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 06 Oct 2008 10:31:39 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv6543 Modified Files: Overview.html Log Message: WF2: select.type (whatwg r2287) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1459 retrieving revision 1.1460 diff -u -d -r1.1459 -r1.1460 --- Overview.html 6 Oct 2008 10:20:00 -0000 1.1459 +++ Overview.html 6 Oct 2008 10:31:36 -0000 1.1460 @@ -21091,7 +21091,7 @@ attribute DOMString <a href=#dom-fe-name title=dom-fe-name>name</a>; attribute boolean <a href=#dom-select-size title=dom-select-size>size</a>; - readonly attribute DOMString <span title=dom-select-type>type</span>; + 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>; attribute unsigned long <span title=dom-select-length>length</span>; @@ -21145,9 +21145,10 @@ attribute represents the element's name. The <code title=attr-fe-disabled><a href=#attr-fe-disabled>disabled</a></code> attribute is used to make the control non-interactive and to prevent its value from being submitted. The <code title=attr-fe-autofocus><a href=#attr-fe-autofocus>autofocus</a></code> - attribute controls focus.<p class=XXX>...</p><!-- XXX - readonly attribute DOMString <span title="dom-select-type">type</span>; - + 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>; 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); @@ -21158,7 +21159,7 @@ void <span title="dom-select-add">add</span>(in <span>HTMLElement</span> element, in <span>HTMLElement</span> before); void <span title="dom-select-remove">remove</span>(in long index); - --><p>The <dfn id=dom-select-multiple title=dom-select-multiple><code>multiple</code></dfn> + --><p class=XXX>...<p>The <dfn id=dom-select-multiple title=dom-select-multiple><code>multiple</code></dfn> and <dfn id=dom-select-size title=dom-select-size><code>size</code></dfn> DOM attributes must <a href=#reflect>reflect</a> the respective content attributes of the same name. The <code title=dom-select-size><a href=#dom-select-size>size</a></code> DOM attribute <a href=#limited-to-only-positive-non-zero-numbers>limited to
Received on Monday, 6 October 2008 10:32:13 UTC