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

Side by Side Diff: LayoutTests/fast/files/file-list-test-expected.txt

Issue 349633005: Expose FileList in Worker contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
OLDNEW
1 1
2 Test the attribute of FileList. 2 Test the attribute of FileList.
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 Start 6 Start
7 PASS files instanceof FileList is true
7 PASS files.length is 2 8 PASS files.length is 2
8 PASS files.item(0) instanceof File is true 9 PASS files.item(0) instanceof File is true
9 PASS files.item(0).name is "UTF8.txt" 10 PASS files.item(0).name is "UTF8.txt"
10 PASS files.item(1) instanceof File is true 11 PASS files.item(1) instanceof File is true
11 PASS files.item(1).name is "UTF8-2.txt" 12 PASS files.item(1).name is "UTF8-2.txt"
12 PASS files.item(2) is null 13 PASS files.item(2) is null
13 PASS files.item(-1) is null 14 PASS files.item(-1) is null
14 PASS files.item(0) === files.item(4294967296) is true 15 PASS files.item(0) === files.item(4294967296) is true
15 PASS files.item(1) === files.item(4294967297) is true 16 PASS files.item(1) === files.item(4294967297) is true
16 PASS files.item(2) === files.item(4294967298) is true 17 PASS files.item(2) === files.item(4294967298) is true
17 PASS files.item(-1) === files.item(4294967295) is true 18 PASS files.item(-1) === files.item(4294967295) is true
18 PASS files.item(-4294967295) === files.item(1) is true 19 PASS files.item(-4294967295) === files.item(1) is true
19 PASS files.item(-4294967296) === files.item(0) is true 20 PASS files.item(-4294967296) === files.item(0) is true
20 PASS files.item(null) === files.item(0) is true 21 PASS files.item(null) === files.item(0) is true
21 PASS files.item(undefined) === files.item(0) is true 22 PASS files.item(undefined) === files.item(0) is true
22 PASS successfullyParsed is true 23 PASS successfullyParsed is true
23 24
24 TEST COMPLETE 25 TEST COMPLETE
25 26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698