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

Side by Side Diff: test/webkit/fast/js/Promise-static-all-expected.txt

Issue 182713002: Import Blink layout tests for Promises. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « test/webkit/fast/js/Promise-static-all.js ('k') | test/webkit/fast/js/Promise-static-cast.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Test Promise.all
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5 PASS result is undefined
6 PASS Promise.all() is rejected.
7 PASS Promise.all([]) is fulfilled.
8 PASS result.length is 0
9 PASS Promise.all([p1, p2, p3]) is fulfilled.
10 PASS result.length is 3
11 PASS result[0] is "p1"
12 PASS result[1] is "p2"
13 PASS result[2] is "p3"
14 PASS Promise.all([p1, p6, p5]) is rejected.
15 PASS result is "p6"
16 PASS Promise.all([p9]) is fulfilled.
17 PASS result.length is 1
18 PASS result[0] is "p2"
19 PASS Promise.all([p9,,,]) is fulfilled.
20 PASS result.length is 3
21 PASS result[0] is "p2"
22 PASS result[1] is undefined
23 PASS result[2] is undefined
24 PASS Promise.all([p9,42]) is fulfilled.
25 PASS result.length is 2
26 PASS result[0] is "p2"
27 PASS result[1] is 42
28 PASS Promise.all({}) is rejected.
29 PASS successfullyParsed is true
30
31 TEST COMPLETE
32
OLDNEW
« no previous file with comments | « test/webkit/fast/js/Promise-static-all.js ('k') | test/webkit/fast/js/Promise-static-cast.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698