| Index: LayoutTests/fast/dom/htmloptionscollection-enumerated-properties.html
|
| diff --git a/LayoutTests/fast/dom/htmloptionscollection-enumerated-properties.html b/LayoutTests/fast/dom/htmloptionscollection-enumerated-properties.html
|
| index 14cc13de83c2639533d470e974484e6bfb7bd649..c0ccbe99812721d872a3ff1e2a263586f523fcf6 100644
|
| --- a/LayoutTests/fast/dom/htmloptionscollection-enumerated-properties.html
|
| +++ b/LayoutTests/fast/dom/htmloptionscollection-enumerated-properties.html
|
| @@ -24,7 +24,7 @@ shouldBe("htmlOptionsCollection.length", "5");
|
| // - The supported property names consist of the non-empty values of all the id and name attributes of all the elements
|
| // represented by the collection, in tree order, ignoring later duplicates, with the id of an element preceding its
|
| // name if it contributes both, they differ from each other, and neither is the duplicate of an earlier entry.
|
| -var expectedEnumeratedProperties = ["0", "1", "2", "3", "4", "length", "selectedIndex", "id1", "name1a", "name1b", "id2", "name2", "id3", "name3", "id4", "namedItem", "add", "remove", "item"].sort();
|
| +var expectedEnumeratedProperties = ["0", "1", "2", "3", "4", "length", "selectedIndex", "id1", "name1a", "name1b", "id2", "name2", "id3", "name3", "id4", "namedItem", "add", "remove", "item", "keys", "values", "entries", "forEach"].sort();
|
|
|
| var enumeratedProperties = [];
|
| for (var property in htmlOptionsCollection) {
|
|
|