Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Side by Side Diff: LayoutTests/fast/dom/htmlcollection-enumerated-properties.html

Issue 906963002: layout tests: Fixes property enumeration tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698