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