| OLD | NEW |
| (Empty) |
| 1 This is a testharness.js-based test. | |
| 2 PASS ReadableStream can be constructed with no errors | |
| 3 PASS ReadableStream can't be constructed with garbage | |
| 4 PASS ReadableStream can't be constructed with an invalid type | |
| 5 PASS ReadableStream instances should have the correct list of properties | |
| 6 PASS ReadableStream constructor should throw for non-function start arguments | |
| 7 PASS ReadableStream constructor can get initial garbage as cancel argument | |
| 8 PASS ReadableStream constructor can get initial garbage as pull argument | |
| 9 FAIL ReadableStream start should be called with the proper parameters assert_equ
als: constructor should have 4 parameter expected 4 but got 5 | |
| 10 PASS ReadableStream start controller parameter should be extensible | |
| 11 PASS ReadableStream should be able to call start method within prototype chain o
f its source | |
| 12 PASS ReadableStream start should be able to return a promise | |
| 13 PASS ReadableStream start should be able to return a promise and reject it | |
| 14 PASS ReadableStream should be able to enqueue different objects. | |
| 15 PASS ReadableStream: if pull rejects, it should error the stream | |
| 16 PASS ReadableStream: should only call pull once upon starting the stream | |
| 17 PASS ReadableStream: should call pull when trying to read from a started, empty
stream | |
| 18 PASS ReadableStream: should only call pull once on a non-empty stream read from
before start fulfills | |
| 19 PASS ReadableStream: should only call pull once on a non-empty stream read from
after start fulfills | |
| 20 PASS ReadableStream: should call pull in reaction to read()ing the last chunk, i
f not draining | |
| 21 PASS ReadableStream: should not call pull() in reaction to read()ing the last ch
unk, if draining | |
| 22 PASS ReadableStream: should not call pull until the previous pull call's promise
fulfills | |
| 23 PASS ReadableStream: should pull after start, and after every read | |
| 24 PASS ReadableStream: should not call pull after start if the stream is now close
d | |
| 25 PASS ReadableStream: should call pull after enqueueing from inside pull (with no
read requests), if strategy allows | |
| 26 PASS ReadableStream pull should be able to close a stream. | |
| 27 PASS ReadableStream pull should be able to error a stream. | |
| 28 PASS ReadableStream pull should be able to error a stream and throw. | |
| 29 PASS ReadableStream: enqueue should throw when the stream is readable but draini
ng | |
| 30 PASS ReadableStream: enqueue should throw when the stream is closed | |
| 31 PASS ReadableStream: should call underlying source methods as methods | |
| 32 PASS ReadableStream strategies: the default strategy should give desiredSize of
1 to start, decreasing by 1 per enqueue | |
| 33 PASS ReadableStream strategies: the default strategy should continue giving desi
redSize of 1 if the chunks are read immediately | |
| 34 PASS ReadableStream integration test: adapting a random push source | |
| 35 PASS ReadableStream integration test: adapting a sync pull source | |
| 36 PASS ReadableStream integration test: adapting an async pull source | |
| 37 Harness: the test ran to completion. | |
| 38 | |
| OLD | NEW |