OLD | NEW |
1 PASS collection = window.someName; collection.length is 2 | 1 PASS collection = window.someName; collection.length is 2 |
2 PASS collection[0].title is "first" | 2 PASS collection[0].title is "first" |
3 PASS collection[1].title is "second" | 3 PASS collection[1].title is "second" |
4 PASS collection[1]; window.someName is collection | 4 PASS collection[1]; window.someName is collection |
5 PASS collection = document.someName; collection.length is 2 | 5 PASS collection = document.someName; collection.length is 2 |
6 PASS collection[0].title is "first" | 6 PASS collection[0].title is "first" |
7 PASS collection[1].title is "second" | 7 PASS collection[1].title is "second" |
8 PASS collection[1]; document.someName is collection | 8 PASS collection[1]; document.someName is collection |
| 9 PASS successfullyParsed is true |
| 10 |
| 11 TEST COMPLETE |
9 Tests that the named item created for an image with an ID is correctly removed.
The test passes, if you see a "PASS" message in the div below. | 12 Tests that the named item created for an image with an ID is correctly removed.
The test passes, if you see a "PASS" message in the div below. |
10 | 13 |
11 | 14 |
OLD | NEW |