- From: poot <cvsmail@w3.org>
- Date: Wed, 29 Oct 2008 09:47:29 +0900 (JST)
- To: public-html-diffs@w3.org
Make list='' only work with <datalist>, not <select>. (credit: sp, avk) (whatwg r2376) suggestions source element http://people.w3.org/mike/diffs/html5/spec/Overview.1.1548.html#concept-input-list Status of this document http://people.w3.org/mike/diffs/html5/spec/Overview.1.1548.html#status-of-this-document A vocabulary and associated APIs for HTML and XHTML http://people.w3.org/mike/diffs/html5/spec/Overview.1.1548.html#a-vocabulary-and-associated-apis-for-html-and-xhtml off http://people.w3.org/mike/diffs/html5/spec/Overview.1.1548.html#attr-input-autocomplete-off-state 4.10.4.2.2 The list attribute http://people.w3.org/mike/diffs/html5/spec/Overview.1.1548.html#the-list-attribute Editor's Draft 29 October 2008 http://people.w3.org/mike/diffs/html5/spec/Overview.1.1548.html#editor-s-draft-date-zzz-9-june-2008 http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1547&r2=1.1548&f=h http://html5.org/tools/web-apps-tracker?from=2375&to=2376 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1547 retrieving revision 1.1548 diff -u -d -r1.1547 -r1.1548 --- Overview.html 28 Oct 2008 23:50:53 -0000 1.1547 +++ Overview.html 29 Oct 2008 00:44:27 -0000 1.1548 @@ -8,7 +8,7 @@ <p><a href=http://www.w3.org/><img alt=W3C height=48 src=http://www.w3.org/Icons/w3c_home width=72></a></p> <h1>HTML 5</h1> <h2 class="no-num no-toc" id=a-vocabulary-and-associated-apis-for-html-and-xhtml>A vocabulary and associated APIs for HTML and XHTML</h2> - <h2 class="no-num no-toc" id=editor-s-draft-date-zzz-9-june-2008><!-- "W3C Working Draft" --> Editor's Draft <!--ZZZ-->28 October 2008</h2> + <h2 class="no-num no-toc" id=editor-s-draft-date-zzz-9-june-2008><!-- "W3C Working Draft" --> Editor's Draft <!--ZZZ-->29 October 2008</h2> <dl><!-- ZZZ: update the month/day <dt>This Version:</dt> <dd><a href="http://www.w3.org/TR/2008/WD-html5-20080610/">http://www.w3.org/TR/2008/WD-html5-20080610/</a></dd> @@ -97,7 +97,7 @@ specification's progress along the W3C Recommendation track. <!--ZZZ:--> - This specification is the 28 October 2008 <!--ZZZ "Working Draft"-->Editor's Draft. + This specification is the 29 October 2008 <!--ZZZ "Working Draft"-->Editor's Draft. <!--:ZZZ--> </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href=http://www.whatwg.org/>WHATWG</a>. The two specifications are identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of) @@ -21041,15 +21041,13 @@ security implications for the user if support for this attribute is disabled.<h6 id=the-list-attribute><span class=secno>4.10.4.2.2 </span>The <code title=attr-input-list><a href=#attr-input-list>list</a></code> attribute</h6><p>The <dfn id=attr-input-list title=attr-input-list><code>list</code></dfn> attribute is used to identify an element that lists predefined - options suggested to the user.<p>If present, its value must be the ID of a <code><a href=#the-select-element>select</a></code> or - <code><a href=#datagrid>datagrid</a></code> element in the same document.<p>The <dfn id=concept-input-list title=concept-input-list>suggestions source + options suggested to the user.<p>If present, its value must be the ID of a <code><a href=#the-datalist-element>datalist</a></code> + element in the same document.<p>The <dfn id=concept-input-list title=concept-input-list>suggestions source element</dfn> is the first element in the document in <a href=#tree-order>tree - order</a> to have an ID equal to the value of the <code title=attr-input-list><a href=#attr-input-list>list</a></code> attribute, if that element is - either a <code><a href=#the-select-element>select</a></code> or <code><a href=#the-datalist-element>datalist</a></code> element. If - there is no <code title=attr-input-list><a href=#attr-input-list>list</a></code> attribute, or - if there is no element with that ID, or if the first element with - that ID is not either a <code><a href=#the-select-element>select</a></code> or <code><a href=#the-datalist-element>datalist</a></code> - element, then there is no <a href=#concept-input-list title=concept-input-list>suggestions source element</a>.<p>If there is a <a href=#concept-input-list title=concept-input-list>suggestions source + order</a> to have an ID equal to the value of the <code title=attr-input-list><a href=#attr-input-list>list</a></code> attribute, if that element is a + <code><a href=#the-datalist-element>datalist</a></code> element. If there is no <code title=attr-input-list><a href=#attr-input-list>list</a></code> attribute, or if there is no + element with that ID, or if the first element with that ID is not a + <code><a href=#the-datalist-element>datalist</a></code> element, then there is no <a href=#concept-input-list title=concept-input-list>suggestions source element</a>.<p>If there is a <a href=#concept-input-list title=concept-input-list>suggestions source element</a>, then each <code><a href=#the-option-element>option</a></code> element that is a descendant of the <a href=#concept-input-list title=concept-input-list>suggestions source element</a>, that is not <a href=#concept-option-disabled title=concept-option-disabled>disabled</a>, and whose <a href=#concept-option-value title=concept-option-value>value</a> is a string that isn't the
Received on Wednesday, 29 October 2008 00:48:12 UTC