| OLD | NEW |
| 1 This test is for RadioNodeList specified at http://www.whatwg.org/specs/web-apps
/current-work/multipage/common-dom-interfaces.html#radionodelist | 1 This test is for RadioNodeList specified at http://www.whatwg.org/specs/web-apps
/current-work/multipage/common-dom-interfaces.html#radionodelist |
| 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 | 6 |
| 7 PASS owner.elements.length is 23 | 7 PASS owner.elements.length is 23 |
| 8 PASS radioNodeList.length is 4 | 8 PASS radioNodeList.length is 4 |
| 9 PASS radioNodeList[0].value is 'searching' | 9 PASS radioNodeList[0].value is 'searching' |
| 10 PASS radioNodeList[1].value is '123' | 10 PASS radioNodeList[1].value is '123' |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 PASS elementsList[13].checked = true; radioNodeList.value is 'inputRadioValue' | 43 PASS elementsList[13].checked = true; radioNodeList.value is 'inputRadioValue' |
| 44 PASS elementsList[13].type = "date"; radioNodeList.value is '' | 44 PASS elementsList[13].type = "date"; radioNodeList.value is '' |
| 45 | 45 |
| 46 Check second RadioNodeList is also created properly | 46 Check second RadioNodeList is also created properly |
| 47 PASS radioNodeList2.length is 3 | 47 PASS radioNodeList2.length is 3 |
| 48 PASS radioNodeList2[0].type is 'text' | 48 PASS radioNodeList2[0].type is 'text' |
| 49 PASS radioNodeList2[1].type is 'email' | 49 PASS radioNodeList2[1].type is 'email' |
| 50 PASS radioNodeList2[2].type is 'reset' | 50 PASS radioNodeList2[2].type is 'reset' |
| 51 After changing the id | 51 After changing the id |
| 52 PASS radioNodeList2.length is 2 | 52 PASS radioNodeList2.length is 2 |
| 53 After resetting the id |
| 54 PASS radioNodeList2.length is 3 |
| 55 |
| 56 Check RadioNodeList created from a form element |
| 57 PASS radioNodeList3.length is 3 |
| 58 PASS radioNodeList3[0].type is 'text' |
| 59 PASS radioNodeList3[1].type is 'email' |
| 60 PASS radioNodeList3[2].type is 'reset' |
| 61 After changing the id |
| 62 PASS radioNodeList3.length is 2 |
| 63 After resetting the id |
| 64 PASS radioNodeList3.length is 3 |
| 53 | 65 |
| 54 Check that object element also reflects in RadioNodeList. | 66 Check that object element also reflects in RadioNodeList. |
| 55 PASS radioNodeList.length is 5 | 67 PASS radioNodeList.length is 5 |
| 56 | 68 |
| 57 Check that object element does not reflect in RadioNodeList if its owner form is
not present. | 69 Check that object element does not reflect in RadioNodeList if its owner form is
not present. |
| 58 PASS container.appendChild(nonSubtreeObjectElement); radioNodeList.length is 5 | 70 PASS container.appendChild(nonSubtreeObjectElement); radioNodeList.length is 5 |
| 59 PASS successfullyParsed is true | 71 PASS successfullyParsed is true |
| 60 | 72 |
| 61 TEST COMPLETE | 73 TEST COMPLETE |
| 62 | 74 |
| OLD | NEW |