- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 04 Sep 2008 11:03:55 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv23079 Modified Files: Overview.html Log Message: WF2: <datalist> element summary. (whatwg r2150) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1322 retrieving revision 1.1323 diff -u -d -r1.1322 -r1.1323 --- Overview.html 4 Sep 2008 10:58:11 -0000 1.1322 +++ Overview.html 4 Sep 2008 11:03:53 -0000 1.1323 @@ -26911,8 +26911,36 @@ <p class=big-issue>... - <h4 id=the-datalist><span class=secno>4.9.7 </span>The - <code>datalist</code> element</h4> + <h4 id=the-datalist><span class=secno>4.9.7 </span>The <dfn + id=datalist><code>datalist</code></dfn> element</h4> + + <dl class=element> + <dt>Categories + + <dd><a href="#phrasing0">Phrasing content</a>. + + <dt>Contexts in which this element may be used: + + <dd>Where <a href="#phrasing0">phrasing content</a> is expected. + + <dt>Content model: + + <dd><a href="#phrasing0">Phrasing content</a>. + + <dt>Element-specific attributes: + + <dd>None. + + <dt>DOM interface: + + <dd> + <pre + class=idl>interface <dfn id=htmlselectelement0>HTMLSelectElement</dfn> : <a href="#htmlelement">HTMLElement</a> { + readonly attribute <a href="#htmloptionscollection0">HTMLOptionsCollection</a> <span title=dom-select-options>options</span>; +};</pre> + </dl> + + <p class=big-issue>... <h4 id=the-optgroup><span class=secno>4.9.8 </span>The <code>optgroup</code> element</h4> @@ -27950,13 +27978,14 @@ <dd>Or: <a href="#flow-content0">Flow content</a>, but where the first element child node, if any, is not a <code><a href="#table">table</a></code>, <code><a - href="#select">select</a></code>, or <code>datalist</code> element. + href="#select">select</a></code>, or <code><a + href="#datalist">datalist</a></code> element. <dd>Or: A single <code><a href="#table">table</a></code> element. <dd>Or: A single <code><a href="#select">select</a></code> element. - <dd>Or: A single <code>datalist</code> element. + <dd>Or: A single <code><a href="#datalist">datalist</a></code> element. <dt>Element-specific attributes: @@ -28795,7 +28824,8 @@ affect the sort order.</p> <dt>While the first element child is a <code><a - href="#select">select</a></code> or <code>datalist</code> element + href="#select">select</a></code> or <code><a + href="#datalist">datalist</a></code> element <dd> <p>The default data provider must return 1 for the column count, the @@ -28805,10 +28835,10 @@ <p>For the rows, assume the existence of a node filter view of the descendants of the first element child of the <code><a href="#datagrid0">datagrid</a></code> element (the <code><a - href="#select">select</a></code> or <code>datalist</code> element), that - skips all nodes other than <code>optgroup</code> and <code>option</code> - elements, as well as any descendents of any <code>option</code> - elements.</p> + href="#select">select</a></code> or <code><a + href="#datalist">datalist</a></code> element), that skips all nodes + other than <code>optgroup</code> and <code>option</code> elements, as + well as any descendents of any <code>option</code> elements.</p> <p>Given a path <var title="">row</var>, the corresponding element is the one obtained by drilling into the view, taking the child given by the @@ -28857,8 +28887,9 @@ href="#getchildatposition">getChildAtPosition(<var title="">row</var>, <var title="">position</var>)</a></code> must return <var title="">position</var>. (The <code><a - href="#select">select</a></code>/<code>datalist</code> default data - provider does not support sorting the data grid.)</p> + href="#select">select</a></code>/<code><a + href="#datalist">datalist</a></code> default data provider does not + support sorting the data grid.)</p> <p><code title=dom-provider-getRowImage><a href="#getrowimage">getRowImage(<var title="">i</var>)</a></code> must @@ -29086,10 +29117,10 @@ <p>These definitions are used for the cell-specific methods of the default data providers (other than in the <code><a - href="#select">select</a></code>/<code>datalist</code> case). How they - behave is based on the contents of an element that represents the cell - given by their first two arguments. Which element that is is defined in - the previous section. + href="#select">select</a></code>/<code><a + href="#datalist">datalist</a></code> case). How they behave is based on + the contents of an element that represents the cell given by their first + two arguments. Which element that is is defined in the previous section. <dl> <dt>Cyclable cells
Received on Thursday, 4 September 2008 11:04:38 UTC