| OLD | NEW |
| 1 This is a testharness.js-based test. | 1 This is a testharness.js-based test. |
| 2 PASS Service worker test setup | 2 PASS Service worker test setup |
| 3 PASS ReadableStream can be constructed with no errors | 3 PASS ReadableStream can be constructed with no errors |
| 4 PASS ReadableStream can't be constructed with garbage | 4 PASS ReadableStream can't be constructed with garbage |
| 5 PASS ReadableStream can't be constructed with an invalid type | 5 PASS ReadableStream can't be constructed with an invalid type |
| 6 PASS ReadableStream instances should have the correct list of properties | 6 PASS ReadableStream instances should have the correct list of properties |
| 7 PASS ReadableStream constructor should throw for non-function start arguments | 7 PASS ReadableStream constructor should throw for non-function start arguments |
| 8 PASS ReadableStream constructor can get initial garbage as cancel argument | 8 PASS ReadableStream constructor can get initial garbage as cancel argument |
| 9 PASS ReadableStream constructor can get initial garbage as pull 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 | 10 FAIL ReadableStream start should be called with the proper parameters assert_equ
als: constructor should have 4 parameter expected 4 but got 5 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 PASS ReadableStream: should not call pull until the previous pull call's promise
fulfills | 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 | 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 | 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 | 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. | 27 PASS ReadableStream pull should be able to close a stream. |
| 28 PASS ReadableStream pull should be able to error 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. | 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 | 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 | 31 PASS ReadableStream: enqueue should throw when the stream is closed |
| 32 PASS ReadableStream: should call underlying source methods as methods | 32 PASS ReadableStream: should call underlying source methods as methods |
| 33 FAIL ReadableStream: desiredSize when closed assert_equals: after closing, desir
edSize must be 0 expected 0 but got 10 |
| 34 FAIL ReadableStream: desiredSize when errored assert_equals: after erroring, des
iredSize must be null expected (object) null but got (number) 10 |
| 33 PASS ReadableStream strategies: the default strategy should give desiredSize of
1 to start, decreasing by 1 per enqueue | 35 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 | 36 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 | 37 PASS ReadableStream integration test: adapting a random push source |
| 36 PASS ReadableStream integration test: adapting a sync pull source | 38 PASS ReadableStream integration test: adapting a sync pull source |
| 37 PASS ReadableStream integration test: adapting an async pull source | 39 PASS ReadableStream integration test: adapting an async pull source |
| 38 Harness: the test ran to completion. | 40 Harness: the test ran to completion. |
| 39 | 41 |
| OLD | NEW |