4 <script src=
"../../resources/js-test.js"></script>
5 <a id=
"id1" name=
"name1"></a>
6 <a id=
"id2" name=
"name1"></a>
8 <a id=
"id4" name=
"name4"></a>
10 <a id=
"id4" name=
"name6"></a>
13 description("This tests verifies the enumerated properties on HTMLCollection and their order.");
15 var testLink
= document
.getElementById("testLink");
16 var htmlCollection
= document
.getElementsByTagName("a");
17 shouldBe("htmlCollection.__proto__", "HTMLCollection.prototype");
18 shouldBe("htmlCollection.length", "6");
20 // As per http://dom.spec.whatwg.org/#htmlcollection:
21 // - The object's supported property indices are the numbers in the range zero to one less than the
22 // number of nodes represented by the collection. If there are no such elements, then there are no
23 // supported property indices.
24 // - The supported property names are the values from the list returned by these steps:
25 // 1. Let result be an empty list.
26 // 2. For each element represented by the collection, in tree order, run these substeps:
27 // 1. If element has an ID which is neither the empty string nor is in result, append element's ID to result.
28 // 2. If element is in the HTML namespace and has a name attribute whose value is neither the empty string
29 // nor is in result, append element's name attribute value to result.
31 var expectedEnumeratedProperties
= ["0", "1" , "2", "3", "4", "5", "length", "id1", "name1", "id2", "id3", "id4", "name4", "name5", "name6", "item", "namedItem"].sort();
33 var enumeratedProperties
= [];
34 for (var property
in htmlCollection
) {
35 enumeratedProperties
[enumeratedProperties
.length
] = property
;
37 enumeratedProperties
.sort();
38 shouldBe("enumeratedProperties", "expectedEnumeratedProperties");