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

Unified Diff: LayoutTests/fast/dom/htmlformcontrolscollection-enumerated-properties.html

Issue 1220883007: [dom] support iterable<> NodeList (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/htmlformcontrolscollection-enumerated-properties.html
diff --git a/LayoutTests/fast/dom/htmlformcontrolscollection-enumerated-properties.html b/LayoutTests/fast/dom/htmlformcontrolscollection-enumerated-properties.html
index c829ae032fa796c3285cef9d57735146d0511f35..2a816cd8d4a0444eb1a61244cf0445f80ceeddaf 100644
--- a/LayoutTests/fast/dom/htmlformcontrolscollection-enumerated-properties.html
+++ b/LayoutTests/fast/dom/htmlformcontrolscollection-enumerated-properties.html
@@ -25,7 +25,7 @@ shouldBe("htmlFormControlsCollection.length", "6");
// - 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", "5", "length", "id1", "name1", "id2", "id3", "id4", "name4", "name5", "name6", "namedItem", "item"].sort();
+var expectedEnumeratedProperties = ["0", "1" , "2", "3", "4", "5", "length", "id1", "name1", "id2", "id3", "id4", "name4", "name5", "name6", "namedItem", "item", "keys", "values", "entries", "forEach"].sort();
var enumeratedProperties = [];
for (var property in htmlFormControlsCollection) {

Powered by Google App Engine
This is Rietveld 408576698