| OLD | NEW | 
|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <html> | 2 <html> | 
| 3 <body> | 3 <body> | 
| 4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> | 
| 5 <a id="id1" name="name1"></a> | 5 <a id="id1" name="name1"></a> | 
| 6 <a id="id2" name="name1"></a> | 6 <a id="id2" name="name1"></a> | 
| 7 <a id="id3"></a> | 7 <a id="id3"></a> | 
| 8 <a id="id4" name="name4"></a> | 8 <a id="id4" name="name4"></a> | 
| 9 <a name="name5"></a> | 9 <a name="name5"></a> | 
| 10 <a id="id4" name="name6"></a> | 10 <a id="id4" name="name6"></a> | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 21 // - The object's supported property indices are the numbers in the range zero t
    o one less than the | 21 // - The object's supported property indices are the numbers in the range zero t
    o one less than the | 
| 22 //   number of nodes represented by the collection. If there are no such element
    s, then there are no | 22 //   number of nodes represented by the collection. If there are no such element
    s, then there are no | 
| 23 //   supported property indices. | 23 //   supported property indices. | 
| 24 // - The supported property names are the values from the list returned by these
     steps: | 24 // - The supported property names are the values from the list returned by these
     steps: | 
| 25 //   1. Let result be an empty list. | 25 //   1. Let result be an empty list. | 
| 26 //   2. For each element represented by the collection, in tree order, run these
     substeps: | 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 res
    ult, append element's ID to result. | 27 //       1. If element has an ID which is neither the empty string nor is in res
    ult, append element's ID to result. | 
| 28 //       2. If element is in the HTML namespace and has a name attribute whose v
    alue is neither the empty string | 28 //       2. If element is in the HTML namespace and has a name attribute whose v
    alue is neither the empty string | 
| 29 //          nor is in result, append element's name attribute value to result. | 29 //          nor is in result, append element's name attribute value to result. | 
| 30 //   3. Return result. | 30 //   3. Return result. | 
| 31 var expectedEnumeratedProperties = ["0", "1" , "2", "3", "4", "5", "length", "id
    1", "name1", "id2", "id3", "id4", "name4", "name5", "name6", "item", "namedItem"
    ]; | 31 var expectedEnumeratedProperties = ["0", "1" , "2", "3", "4", "5", "length", "id
    1", "name1", "id2", "id3", "id4", "name4", "name5", "name6", "item", "namedItem"
    ].sort(); | 
| 32 | 32 | 
| 33 var enumeratedProperties = []; | 33 var enumeratedProperties = []; | 
| 34 for (var property in htmlCollection) { | 34 for (var property in htmlCollection) { | 
| 35   enumeratedProperties[enumeratedProperties.length] = property; | 35   enumeratedProperties[enumeratedProperties.length] = property; | 
| 36 } | 36 } | 
|  | 37 enumeratedProperties.sort(); | 
| 37 shouldBe("enumeratedProperties", "expectedEnumeratedProperties"); | 38 shouldBe("enumeratedProperties", "expectedEnumeratedProperties"); | 
| 38 </script> | 39 </script> | 
| 39 </body> | 40 </body> | 
| 40 </html> | 41 </html> | 
| OLD | NEW | 
|---|