mirror of
https://github.com/servo/servo.git
synced 2025-09-15 17:38:23 +01:00
Update web-platform-tests to revision b'5d8ec746ed021738e7ee0cee92ad1a1814ba00fe' (#33274)
Signed-off-by: WPT Sync Bot <ghbot+wpt-sync@servo.org>
This commit is contained in:
parent
3acc9edd82
commit
3453d9fdad
584 changed files with 14669 additions and 3037 deletions
56
tests/wpt/meta/dom/observable/tentative/observable-catch.any.js.ini
vendored
Normal file
56
tests/wpt/meta/dom/observable/tentative/observable-catch.any.js.ini
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
[observable-catch.any.html]
|
||||
[catch(): Returns an Observable that is a pass-through for next()/complete()]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): Handle errors from source and flatten to a new Observable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): Errors thrown in the catch() callback are sent to the consumer's error handler]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler can return an empty iterable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler can return a Promise]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): should handle returning an async iterable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler emits an error if the value returned is not convertible to an Observable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler returns an Observable that throws immediately on subscription]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): Abort order between outer AbortSignal and inner CatchHandler subscriber's AbortSignal]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[observable-catch.any.worker.html]
|
||||
[catch(): Returns an Observable that is a pass-through for next()/complete()]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): Handle errors from source and flatten to a new Observable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): Errors thrown in the catch() callback are sent to the consumer's error handler]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler can return an empty iterable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler can return a Promise]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): should handle returning an async iterable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler emits an error if the value returned is not convertible to an Observable]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): CatchHandler returns an Observable that throws immediately on subscription]
|
||||
expected: FAIL
|
||||
|
||||
[catch(): Abort order between outer AbortSignal and inner CatchHandler subscriber's AbortSignal]
|
||||
expected: FAIL
|
|
@ -38,6 +38,21 @@
|
|||
[from(): Promise that implements @@iterator protocol gets converted as an iterable, not Promise]
|
||||
expected: FAIL
|
||||
|
||||
[from(): [Symbol.iterator\] not callable]
|
||||
expected: FAIL
|
||||
|
||||
[from(): [Symbol.iterator\] is not cached]
|
||||
expected: FAIL
|
||||
|
||||
[from(): Promise whose [Symbol.iterator\] returns null converts as Promise]
|
||||
expected: FAIL
|
||||
|
||||
[from(): Rethrows the error when Converting an object whose @@iterator method *getter* throws an error]
|
||||
expected: FAIL
|
||||
|
||||
[from(): Throws 'callable' error when @@iterator property is a non-callable primitive]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[observable-from.any.html]
|
||||
[from(): Observable.from() is a function]
|
||||
|
@ -78,3 +93,18 @@
|
|||
|
||||
[from(): Promise that implements @@iterator protocol gets converted as an iterable, not Promise]
|
||||
expected: FAIL
|
||||
|
||||
[from(): [Symbol.iterator\] not callable]
|
||||
expected: FAIL
|
||||
|
||||
[from(): [Symbol.iterator\] is not cached]
|
||||
expected: FAIL
|
||||
|
||||
[from(): Promise whose [Symbol.iterator\] returns null converts as Promise]
|
||||
expected: FAIL
|
||||
|
||||
[from(): Rethrows the error when Converting an object whose @@iterator method *getter* throws an error]
|
||||
expected: FAIL
|
||||
|
||||
[from(): Throws 'callable' error when @@iterator property is a non-callable primitive]
|
||||
expected: FAIL
|
||||
|
|
44
tests/wpt/meta/dom/observable/tentative/observable-reduce.any.js.ini
vendored
Normal file
44
tests/wpt/meta/dom/observable/tentative/observable-reduce.any.js.ini
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
[observable-reduce.any.html]
|
||||
[reduce(): Reduces the values of the Observable, starting with the initial seed value]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Rejects if the source observable emits an error]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Seeds with the first value of the source, if no initial value is provided]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Errors thrown in reducer reject the promise and abort the source]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): When source is empty, promise resolves with initial value]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): When source is empty, AND no seed value is provided, the promise rejects with a TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Reject with an AbortError if the subscription is aborted before the source completes]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[observable-reduce.any.worker.html]
|
||||
[reduce(): Reduces the values of the Observable, starting with the initial seed value]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Rejects if the source observable emits an error]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Seeds with the first value of the source, if no initial value is provided]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Errors thrown in reducer reject the promise and abort the source]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): When source is empty, promise resolves with initial value]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): When source is empty, AND no seed value is provided, the promise rejects with a TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[reduce(): Reject with an AbortError if the subscription is aborted before the source completes]
|
||||
expected: FAIL
|
Loading…
Add table
Add a link
Reference in a new issue