HTML5 Tracker

Diff (omit for latest revision)
Filter

Short URL: http://html5.org/r/7090

SVNBugCommentTime (UTC)
7090[Gecko] [Internet Explorer] [Opera] [Webkit] Make <form> elements use RadioNodeList as well.2012-05-07 22:05
Index: source
===================================================================
--- source	(revision 7089)
+++ source	(revision 7090)
@@ -51385,8 +51385,8 @@
    <dd>
 
     <p>Returns the form control (or, if there are several, a
-    <code>NodeList</code> of the form controls) in the form with the
-    given <span title="concept-id">ID</span> or <code
+    <code>RadioNodeList</code> of the form controls) in the form with
+    the given <span title="concept-id">ID</span> or <code
     title="attr-fe-name">name</code> (excluding image buttons for
     historical reasons); or, if there are none, returns the
     <code>img</code> element with the given ID.</p>
@@ -51399,7 +51399,7 @@
     element remains in the <code>Document</code>.</p>
 
     <p>If there are multiple matching items, then a
-    <code>NodeList</code> object containing all those elements is
+    <code>RadioNodeList</code> object containing all those elements is
     returned.</p>
 
    </dd>
@@ -51500,7 +51500,7 @@
   <ol>
 
    <li><p>Let <var title="">candidates</var> be a <span>live</span>
-   <code>NodeList</code> object containing all the <span
+   <code>RadioNodeList</code> object containing all the <span
    title="category-listed">listed elements</span> that are descendants
    of the <code>form</code> element and that have either an <code
    title="attr-id">id</code> attribute or a <code
@@ -51509,10 +51509,11 @@
 
    <li><p>If <var title="">candidates</var> is empty, let <var
    title="">candidates</var> be a <span>live</span>
-   <code>NodeList</code> object containing all the <code>img</code>
-   elements that are descendants of the <code>form</code> element and
-   that have either an <code title="attr-id">id</code> attribute or a
-   <code title="attr-img-name">name</code> attribute equal to <var
+   <code>RadioNodeList</code> object containing all the
+   <code>img</code> elements that are descendants of the
+   <code>form</code> element and that have either an <code
+   title="attr-id">id</code> attribute or a <code
+   title="attr-img-name">name</code> attribute equal to <var
    title="">name</var>, in <span>tree order</span>.</p></li>
 
    <li><p>If <var title="">candidates</var> is empty, <var
@@ -119759,6 +119760,7 @@
   Ivo Emanuel Gon&ccedil;alves,
   J. King,
   Jacques Distler,
+  Jake Verbaten,
   James Craig,
   James Graham,
   James Justin Harrell,

|