Update web-platform-tests to revision b'a39b23cb150d1ca3eddf7f2097ffe792a5f911e5' (#31425)

This commit is contained in:
Servo WPT Sync 2024-02-25 01:16:30 -05:00 committed by GitHub
parent 0d4e4748c4
commit 32f1d07323
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
409 changed files with 16860 additions and 3438 deletions

View file

@ -107,6 +107,9 @@
[Subscriber signal is readonly]
expected: FAIL
[Subscriber#error() value is stored as Subscriber's AbortSignal's reason]
expected: FAIL
[observable-constructor.any.html]
[Observable constructor]
@ -216,3 +219,6 @@
[Subscriber signal is readonly]
expected: FAIL
[Subscriber#error() value is stored as Subscriber's AbortSignal's reason]
expected: FAIL

View file

@ -0,0 +1,44 @@
[observable-drop.any.worker.html]
[drop(): Observable should skip the first n values from the source observable, then pass through the rest of the values and completion]
expected: FAIL
[drop(): Observable passes through errors from source Observable]
expected: FAIL
[drop(): Observable passes through errors from source observable even before drop count is met]
expected: FAIL
[drop(): Observable passes through completions from source observable even before drop count is met]
expected: FAIL
[drop(): Unsubscribing from the Observable returned by drop() also unsubscribes from the source Observable]
expected: FAIL
[drop(): A drop amount of 0 simply mirrors the source Observable]
expected: FAIL
[drop(): Passing negative value wraps to maximum value ]
expected: FAIL
[observable-drop.any.html]
[drop(): Observable should skip the first n values from the source observable, then pass through the rest of the values and completion]
expected: FAIL
[drop(): Observable passes through errors from source Observable]
expected: FAIL
[drop(): Observable passes through errors from source observable even before drop count is met]
expected: FAIL
[drop(): Observable passes through completions from source observable even before drop count is met]
expected: FAIL
[drop(): Unsubscribing from the Observable returned by drop() also unsubscribes from the source Observable]
expected: FAIL
[drop(): A drop amount of 0 simply mirrors the source Observable]
expected: FAIL
[drop(): Passing negative value wraps to maximum value ]
expected: FAIL

View file

@ -0,0 +1,32 @@
[observable-filter.any.html]
[filter(): Returned Observable filters out results based on predicate]
expected: FAIL
[filter(): Errors thrown in filter predicate are emitted to Observer error() handler]
expected: FAIL
[filter(): Passes complete() through from source Observable]
expected: FAIL
[filter(): Passes error() through from source Observable]
expected: FAIL
[filter(): Upon source completion, source Observable teardown sequence happens after downstream filter complete() is called]
expected: FAIL
[observable-filter.any.worker.html]
[filter(): Returned Observable filters out results based on predicate]
expected: FAIL
[filter(): Errors thrown in filter predicate are emitted to Observer error() handler]
expected: FAIL
[filter(): Passes complete() through from source Observable]
expected: FAIL
[filter(): Passes error() through from source Observable]
expected: FAIL
[filter(): Upon source completion, source Observable teardown sequence happens after downstream filter complete() is called]
expected: FAIL

View file

@ -0,0 +1,38 @@
[observable-map.any.html]
[map(): Maps values correctly]
expected: FAIL
[map(): Mapper errors are emitted to Observer error() handler]
expected: FAIL
[map(): Passes complete() through from source Observable]
expected: FAIL
[map(): Passes error() through from source Observable]
expected: FAIL
[map(): Upon source completion, source Observable teardown sequence happens before downstream mapper complete() is called]
expected: FAIL
[map(): Map observable unsubscription causes source Observable unsubscription. Mapper Observer's complete()/error() are not called]
expected: FAIL
[observable-map.any.worker.html]
[map(): Maps values correctly]
expected: FAIL
[map(): Mapper errors are emitted to Observer error() handler]
expected: FAIL
[map(): Passes complete() through from source Observable]
expected: FAIL
[map(): Passes error() through from source Observable]
expected: FAIL
[map(): Upon source completion, source Observable teardown sequence happens before downstream mapper complete() is called]
expected: FAIL
[map(): Map observable unsubscription causes source Observable unsubscription. Mapper Observer's complete()/error() are not called]
expected: FAIL

View file

@ -0,0 +1,3 @@
[observable-map.window.html]
[map()'s internal observer's next steps do not crash in a detached document]
expected: FAIL

View file

@ -0,0 +1,32 @@
[observable-take.any.worker.html]
[take(): Takes the first N values from the source observable, then completes]
expected: FAIL
[take(): Forwards complete()s that happen before the take count is met, and unsubscribes from source Observable]
expected: FAIL
[take(): Should forward errors from the source observable]
expected: FAIL
[take(): take(0) should not subscribe to the source observable, and should return an observable that immediately completes]
expected: FAIL
[take(): Negative count is treated as maximum value]
expected: FAIL
[observable-take.any.html]
[take(): Takes the first N values from the source observable, then completes]
expected: FAIL
[take(): Forwards complete()s that happen before the take count is met, and unsubscribes from source Observable]
expected: FAIL
[take(): Should forward errors from the source observable]
expected: FAIL
[take(): take(0) should not subscribe to the source observable, and should return an observable that immediately completes]
expected: FAIL
[take(): Negative count is treated as maximum value]
expected: FAIL

View file

@ -32,6 +32,15 @@
[takeUntil: notifier calls `Subscriber#error()` twice; second goes to global error handler]
expected: FAIL
[takeUntil: notifier next() unsubscribes from notifier]
expected: FAIL
[takeUntil: notifier error() unsubscribes from notifier]
expected: FAIL
[takeUntil: notifier throw Error unsubscribes from notifier]
expected: FAIL
[observable-takeUntil.any.worker.html]
[takeUntil subscribes to source Observable and mirrors it uninterrupted]
@ -66,3 +75,12 @@
[takeUntil: notifier calls `Subscriber#error()` twice; second goes to global error handler]
expected: FAIL
[takeUntil: notifier next() unsubscribes from notifier]
expected: FAIL
[takeUntil: notifier error() unsubscribes from notifier]
expected: FAIL
[takeUntil: notifier throw Error unsubscribes from notifier]
expected: FAIL