3 <form id=
"a"><input type=radio
name=
"one"></form>
4 <form id=
"b"><input type=radio
name=
"one"><input type=text
></form>
6 var v
= document
.getElementById('b');
7 document
.body
.removeChild(v
);
8 document
.getElementById('a').appendChild(v
.elements
[0]);
9 document
.write("There should be two elements in the first form and one in the second. The count in form one is " +
10 document
.forms
[0].elements
.length
+ ", and the count in form two is " + v
.elements
.length
+ ".");