OLD | NEW |
| 1 CONSOLE WARNING: The <keygen> element is deprecated and will be removed in M54,
around October 2016. See https://www.chromestatus.com/features/5716060992962560
for more details. |
1 This test the elements attibute of HTMLFieldSet element. | 2 This test the elements attibute of HTMLFieldSet element. |
2 | 3 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 5 |
5 | 6 |
6 PASS owner.elements.length is 23 | 7 PASS owner.elements.length is 23 |
7 PASS owner.elements[0].id is 'button1' | 8 PASS owner.elements[0].id is 'button1' |
8 PASS owner.elements[1].id is 'fieldset1' | 9 PASS owner.elements[1].id is 'fieldset1' |
9 PASS owner.elements[2].id is 'inputhidden' | 10 PASS owner.elements[2].id is 'inputhidden' |
10 PASS owner.elements[3].id is 'inputtext' | 11 PASS owner.elements[3].id is 'inputtext' |
(...skipping 29 matching lines...) Expand all Loading... |
40 Check owner.elements is updated properly after removing from parent | 41 Check owner.elements is updated properly after removing from parent |
41 PASS form.appendChild(newElement); form.elements.length is 1 | 42 PASS form.appendChild(newElement); form.elements.length is 1 |
42 PASS form.removeChild(newElement); form.elements.length is 0 | 43 PASS form.removeChild(newElement); form.elements.length is 0 |
43 PASS owner.elements.length is 22 | 44 PASS owner.elements.length is 22 |
44 PASS owner.appendChild(newElement); owner.elements.length is 23 | 45 PASS owner.appendChild(newElement); owner.elements.length is 23 |
45 PASS owner.removeChild(newElement); owner.elements.length is 22 | 46 PASS owner.removeChild(newElement); owner.elements.length is 22 |
46 PASS successfullyParsed is true | 47 PASS successfullyParsed is true |
47 | 48 |
48 TEST COMPLETE | 49 TEST COMPLETE |
49 | 50 |
OLD | NEW |