Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / formmove.html
blobab7ad1b8b780fa412a2b6be0cc633e726fe5a4e8
1 <form><input type=radio name="one">One
2 <input type=radio name="one">Two
3 <input type=radio name="one">Three
5 </form>
7 <form>
9 <input type=radio name="one">One
10 <input type=radio name="one">Two
11 <input type=radio name="one">Three
12 </form>
14 <script>
15 document.forms[1].appendChild(document.forms[0].firstChild); document.forms[1].appendChild(document.forms[0].firstChild);
16 document.write("The count of the # of elements in form 1 should be 2 and in form 2 should be 4. The count in form 1 is "
17 + document.forms[0].elements.length + ", and the count in form 2 is " + document.forms[1].elements.length);
18 </script>