- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 07 May 2012 22:05:43 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv23549 Modified Files: Overview.html Log Message: Make <form> elements use RadioNodeList as well. (whatwg r7090) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5646 retrieving revision 1.5647 diff -u -d -r1.5646 -r1.5647 --- Overview.html 7 May 2012 21:50:36 -0000 1.5646 +++ Overview.html 7 May 2012 22:05:37 -0000 1.5647 @@ -37199,8 +37199,8 @@ <dd> <p>Returns the form control (or, if there are several, a - <code><a href="#nodelist">NodeList</a></code> of the form controls) in the form with the - given <a href="#concept-id" title="concept-id">ID</a> or <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code> (excluding image buttons for + <code><a href="#radionodelist">RadioNodeList</a></code> of the form controls) in the form with + the given <a href="#concept-id" title="concept-id">ID</a> or <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code> (excluding image buttons for historical reasons); or, if there are none, returns the <code><a href="#the-img-element">img</a></code> element with the given ID.</p> @@ -37210,7 +37210,7 @@ element remains in the <code><a href="#document">Document</a></code>.</p> <p>If there are multiple matching items, then a - <code><a href="#nodelist">NodeList</a></code> object containing all those elements is + <code><a href="#radionodelist">RadioNodeList</a></code> object containing all those elements is returned.</p> </dd> @@ -37288,14 +37288,13 @@ retrieval</dfn>, the user agent must run the following steps:</p> <ol><li><p>Let <var title="">candidates</var> be a <a href="#live">live</a> - <code><a href="#nodelist">NodeList</a></code> object containing all the <a href="#category-listed" title="category-listed">listed elements</a> that are descendants + <code><a href="#radionodelist">RadioNodeList</a></code> object containing all the <a href="#category-listed" title="category-listed">listed elements</a> that are descendants of the <code><a href="#the-form-element">form</a></code> element and that have either an <code title="attr-id"><a href="#the-id-attribute">id</a></code> attribute or a <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code> attribute equal to <var title="">name</var>, in <a href="#tree-order">tree order</a>.</li> <li><p>If <var title="">candidates</var> is empty, let <var title="">candidates</var> be a <a href="#live">live</a> - <code><a href="#nodelist">NodeList</a></code> object containing all the <code><a href="#the-img-element">img</a></code> - elements that are descendants of the <code><a href="#the-form-element">form</a></code> element and - that have either an <code title="attr-id"><a href="#the-id-attribute">id</a></code> attribute or a - <code title="attr-img-name"><a href="#attr-img-name">name</a></code> attribute equal to <var title="">name</var>, in <a href="#tree-order">tree order</a>.</li> + <code><a href="#radionodelist">RadioNodeList</a></code> object containing all the + <code><a href="#the-img-element">img</a></code> elements that are descendants of the + <code><a href="#the-form-element">form</a></code> element and that have either an <code title="attr-id"><a href="#the-id-attribute">id</a></code> attribute or a <code title="attr-img-name"><a href="#attr-img-name">name</a></code> attribute equal to <var title="">name</var>, in <a href="#tree-order">tree order</a>.</li> <li><p>If <var title="">candidates</var> is empty, <var title="">name</var> is the name of one of the entries in the <code><a href="#the-form-element">form</a></code> element's <a href="#past-names-map">past names map</a>: return the @@ -83124,6 +83123,7 @@ Ivo Emanuel Gonçalves, J. King, Jacques Distler, + Jake Verbaten, James Craig, James Graham, James Justin Harrell,
Received on Monday, 7 May 2012 22:05:46 UTC