OLD | NEW |
1 Multiple radio buttons/checkboxes with the same name should map to a countable c
ollection object when accessed through either document.form.name or document.get
ElementsbyName(). There is no standardization for what that object is called (Co
llection, NodeList, HTMLCollection, etc.), nor is it always the same for both me
thods of access. | 1 Multiple radio buttons/checkboxes with the same name should map to a countable c
ollection object when accessed through either document.form.name or document.get
ElementsbyName(). There is no standardization for what that object is called (Co
llection, NodeList, HTMLCollection, etc.), nor is it always the same for both me
thods of access. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 Radio button: Male Female | 6 Radio button: Male Female |
7 Checkbox: 1 | 7 Checkbox: 1 |
8 Checkbox: 1 2 | 8 Checkbox: 1 2 |
9 | 9 |
10 PASS typeof document.f.cb0 is 'undefined' | 10 PASS typeof document.f.cb0 is 'undefined' |
11 PASS document.f.cb1.nodeName is 'INPUT' | 11 PASS document.f.cb1.nodeName is 'INPUT' |
12 PASS document.f.cb2.length is 2 | 12 PASS document.f.cb2.length is 2 |
13 PASS document.f.rb2.length is 2 | 13 PASS document.f.rb2.length is 2 |
14 PASS document.getElementsByName('cb2').length is 2 | 14 PASS document.getElementsByName('cb2').length is 2 |
15 PASS document.getElementsByName('rb2').length is 2 | 15 PASS document.getElementsByName('rb2').length is 2 |
16 PASS successfullyParsed is true | 16 PASS successfullyParsed is true |
17 | 17 |
18 TEST COMPLETE | 18 TEST COMPLETE |
19 | 19 |
OLD | NEW |