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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/domListEnumeration-expected.txt

Issue 1367523002: [dom] support iterable<> NodeList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actual on the left, expected on the right Created 5 years, 1 month 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
OLDNEW
1 This tests enumerating the elements of DOM lists. 1 This tests enumerating the elements of DOM lists.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 6
7 [object NodeList] 7 [object NodeList]
8 PASS resultArray.length is 5 8 PASS resultArray.length is 9
9 PASS resultArray[0].i is '0' 9 PASS resultArray[0].i is '0'
10 PASS resultArray[0].item is nodeList.item(0) 10 PASS resultArray[0].item is nodeList.item(0)
11 PASS resultArray[1].i is '1' 11 PASS resultArray[1].i is '1'
12 PASS resultArray[1].item is nodeList.item(1) 12 PASS resultArray[1].item is nodeList.item(1)
13 PASS resultArray[2].i is '2' 13 PASS resultArray[2].i is '2'
14 PASS resultArray[2].item is nodeList.item(2) 14 PASS resultArray[2].item is nodeList.item(2)
15 15
16 [object HTMLCollection] 16 [object HTMLCollection]
17 PASS resultArray.length is 6 17 PASS resultArray.length is 6
18 PASS resultArray[0].i is '0' 18 PASS resultArray[0].i is '0'
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 PASS resultArray[0].item is mediaList.item(0) 79 PASS resultArray[0].item is mediaList.item(0)
80 PASS resultArray[1].i is '1' 80 PASS resultArray[1].i is '1'
81 PASS resultArray[1].item is mediaList.item(1) 81 PASS resultArray[1].item is mediaList.item(1)
82 PASS resultArray[2].i is '2' 82 PASS resultArray[2].i is '2'
83 PASS resultArray[2].item is mediaList.item(2) 83 PASS resultArray[2].item is mediaList.item(2)
84 84
85 PASS successfullyParsed is true 85 PASS successfullyParsed is true
86 86
87 TEST COMPLETE 87 TEST COMPLETE
88 88
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698