Update web-platform-tests to revision b'86de4ffa4e439098e05f05de7d8cae1c24ff84fb' (#32200)

Co-authored-by: Servo WPT Sync <josh+wptsync@joshmatthews.net>
This commit is contained in:
Samson 2024-05-01 17:47:11 +02:00 committed by GitHub
parent 6065abcb6b
commit eb7484de5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
893 changed files with 44893 additions and 6623 deletions

View file

@ -720,3 +720,60 @@
[ShadowRoot interface: attribute clonable]
expected: FAIL
[Document interface: operation prepend((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Document interface: operation append((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Document interface: operation replaceChildren((Node or TrustedScript or DOMString)...)]
expected: FAIL
[DocumentType interface: operation before((Node or TrustedScript or DOMString)...)]
expected: FAIL
[DocumentType interface: operation after((Node or TrustedScript or DOMString)...)]
expected: FAIL
[DocumentType interface: operation replaceWith((Node or TrustedScript or DOMString)...)]
expected: FAIL
[DocumentFragment interface: operation prepend((Node or TrustedScript or DOMString)...)]
expected: FAIL
[DocumentFragment interface: operation append((Node or TrustedScript or DOMString)...)]
expected: FAIL
[DocumentFragment interface: operation replaceChildren((Node or TrustedScript or DOMString)...)]
expected: FAIL
[ShadowRoot interface: attribute serializable]
expected: FAIL
[Element interface: operation prepend((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Element interface: operation append((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Element interface: operation replaceChildren((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Element interface: operation before((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Element interface: operation after((Node or TrustedScript or DOMString)...)]
expected: FAIL
[Element interface: operation replaceWith((Node or TrustedScript or DOMString)...)]
expected: FAIL
[CharacterData interface: operation before((Node or TrustedScript or DOMString)...)]
expected: FAIL
[CharacterData interface: operation after((Node or TrustedScript or DOMString)...)]
expected: FAIL
[CharacterData interface: operation replaceWith((Node or TrustedScript or DOMString)...)]
expected: FAIL

View file

@ -0,0 +1,3 @@
[continue-css-animation-left.html]
[Node.moveBefore should preserve CSS animation state (left)]
expected: FAIL

View file

@ -0,0 +1,3 @@
[continue-css-animation-transform.html]
[Node.moveBefore should preserve CSS animation state (transform)]
expected: FAIL

View file

@ -0,0 +1,4 @@
[continue-css-transition-left-pseudo.html]
expected: TIMEOUT
[Node.moveBefore should preserve CSS transition state on pseudo-elements (left)]
expected: TIMEOUT

View file

@ -0,0 +1,3 @@
[continue-css-transition-left.html]
[Node.moveBefore should preserve CSS transition state (left)]
expected: FAIL

View file

@ -0,0 +1,4 @@
[continue-css-transition-transform-pseudo.html]
expected: TIMEOUT
[Node.moveBefore should preserve CSS transition state on pseudo-elements (transform)]
expected: TIMEOUT

View file

@ -0,0 +1,4 @@
[continue-css-transition-transform.html]
expected: TIMEOUT
[Node.moveBefore should preserve CSS transition state (transform)]
expected: TIMEOUT

View file

@ -0,0 +1,3 @@
[css-animation-commit-styles.html]
[Calling commitStyles after Node.moveBefore should commit mid-transition value]
expected: FAIL

View file

@ -0,0 +1,3 @@
[css-transition-cross-document.html]
[Moving a transition across documents should reset its state]
expected: FAIL

View file

@ -0,0 +1,3 @@
[css-transition-cross-shadow.html]
[Moving an element with a transition across shadow boundaries should reset the transition]
expected: FAIL

View file

@ -0,0 +1,3 @@
[css-transition-to-disconnected-document.html]
[Moving an element with a transition to a disconnected document should reset the transitionm state]
expected: FAIL

View file

@ -0,0 +1,3 @@
[css-transition-trigger.html]
[Node.moveBefore should trigger CSS transition state (left) if needed]
expected: FAIL

View file

@ -0,0 +1,62 @@
[observable-every.any.worker.html]
[every(): Promise resolves to true if all values pass the predicate]
expected: FAIL
[every(): Promise resolves to false if any value fails the predicate]
expected: FAIL
[every(): Abort the subscription to the source if the predicate does not pass]
expected: FAIL
[every(): Lifecycle checks when all values pass the predicate]
expected: FAIL
[every(): Lifecycle checks when any value fails the predicate]
expected: FAIL
[every(): Resolves with true if the observable completes without emitting a value]
expected: FAIL
[every(): Rejects with any error emitted from the source observable]
expected: FAIL
[every(): Rejects with any error thrown from the predicate]
expected: FAIL
[every(): Index is passed into the predicate]
expected: FAIL
[every(): Rejects with a DOMException if the source Observable is aborted]
expected: FAIL
[observable-every.any.html]
[every(): Promise resolves to true if all values pass the predicate]
expected: FAIL
[every(): Promise resolves to false if any value fails the predicate]
expected: FAIL
[every(): Abort the subscription to the source if the predicate does not pass]
expected: FAIL
[every(): Lifecycle checks when all values pass the predicate]
expected: FAIL
[every(): Lifecycle checks when any value fails the predicate]
expected: FAIL
[every(): Resolves with true if the observable completes without emitting a value]
expected: FAIL
[every(): Rejects with any error emitted from the source observable]
expected: FAIL
[every(): Rejects with any error thrown from the predicate]
expected: FAIL
[every(): Index is passed into the predicate]
expected: FAIL
[every(): Rejects with a DOMException if the source Observable is aborted]
expected: FAIL

View file

@ -14,6 +14,9 @@
[filter(): Upon source completion, source Observable teardown sequence happens after downstream filter complete() is called]
expected: FAIL
[filter(): Index is passed correctly to predicate]
expected: FAIL
[observable-filter.any.worker.html]
[filter(): Returned Observable filters out results based on predicate]
@ -30,3 +33,6 @@
[filter(): Upon source completion, source Observable teardown sequence happens after downstream filter complete() is called]
expected: FAIL
[filter(): Index is passed correctly to predicate]
expected: FAIL

View file

@ -0,0 +1,38 @@
[observable-find.any.html]
[find(): Promise resolves with the first value that passes the predicate]
expected: FAIL
[find(): Promise resolves with undefined if no value passes the predicate]
expected: FAIL
[find(): Promise rejects with the error emitted from the source Observable]
expected: FAIL
[find(): Promise rejects with any error thrown from the predicate]
expected: FAIL
[find(): Passes the index of the value to the predicate]
expected: FAIL
[find(): Rejects with AbortError when the signal is aborted]
expected: FAIL
[observable-find.any.worker.html]
[find(): Promise resolves with the first value that passes the predicate]
expected: FAIL
[find(): Promise resolves with undefined if no value passes the predicate]
expected: FAIL
[find(): Promise rejects with the error emitted from the source Observable]
expected: FAIL
[find(): Promise rejects with any error thrown from the predicate]
expected: FAIL
[find(): Passes the index of the value to the predicate]
expected: FAIL
[find(): Rejects with AbortError when the signal is aborted]
expected: FAIL

View file

@ -0,0 +1,80 @@
[observable-inspect.any.html]
[inspect(): Provides a pre-subscription subscribe callback]
expected: FAIL
[inspect(): Provides a way to tap into the values and completions of the source observable using an observer]
expected: FAIL
[inspect(): Error handler does not stop error from being reported to the global, when subscriber does not pass error handler]
expected: FAIL
[inspect(): Provides a way to tap into the values and errors of the source observable using an observer. Errors are passed through]
expected: FAIL
[inspect(): ObserverCallback passed in]
expected: FAIL
[inspect(): Throwing an error in the observer next handler is caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Throwing an error in the observer error handler in inspect() is caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Throwing an error in the observer complete handler is caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Throwing an error in the next handler function in do should be caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Errors thrown in subscribe() Inspector handler subscribe handler are caught and sent to error callback]
expected: FAIL
[inspect(): Provides a way to tap into the moment a source observable is unsubscribed from]
expected: FAIL
[inspect(): Inspector abort() handler is not called if the source completes before the result is unsubscribed from]
expected: FAIL
[inspect(): Errors thrown from inspect()'s abort() handler are caught and reported to the global, because the subscription is already closed by the time the handler runs]
expected: FAIL
[observable-inspect.any.worker.html]
[inspect(): Provides a pre-subscription subscribe callback]
expected: FAIL
[inspect(): Provides a way to tap into the values and completions of the source observable using an observer]
expected: FAIL
[inspect(): Error handler does not stop error from being reported to the global, when subscriber does not pass error handler]
expected: FAIL
[inspect(): Provides a way to tap into the values and errors of the source observable using an observer. Errors are passed through]
expected: FAIL
[inspect(): ObserverCallback passed in]
expected: FAIL
[inspect(): Throwing an error in the observer next handler is caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Throwing an error in the observer error handler in inspect() is caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Throwing an error in the observer complete handler is caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Throwing an error in the next handler function in do should be caught and sent to the error callback of the result observable]
expected: FAIL
[inspect(): Errors thrown in subscribe() Inspector handler subscribe handler are caught and sent to error callback]
expected: FAIL
[inspect(): Provides a way to tap into the moment a source observable is unsubscribed from]
expected: FAIL
[inspect(): Inspector abort() handler is not called if the source completes before the result is unsubscribed from]
expected: FAIL
[inspect(): Errors thrown from inspect()'s abort() handler are caught and reported to the global, because the subscription is already closed by the time the handler runs]
expected: FAIL

View file

@ -0,0 +1,44 @@
[observable-some.any.worker.html]
[some(): subscriber is inactive after the first value that passes the predicate, because the source was unsubscribed from]
expected: FAIL
[observable-some]
expected: FAIL
[observable-some 1]
expected: FAIL
[some(): The returned promise rejects with an error if the predicate errors]
expected: FAIL
[some(): The returned promise rejects with an error if the source observable errors]
expected: FAIL
[some(): The returned promise resolves as false if the source observable completes without emitting a value]
expected: FAIL
[some(): The return promise rejects with a DOMException if the signal is aborted]
expected: FAIL
[observable-some.any.html]
[some(): subscriber is inactive after the first value that passes the predicate, because the source was unsubscribed from]
expected: FAIL
[observable-some]
expected: FAIL
[observable-some 1]
expected: FAIL
[some(): The returned promise rejects with an error if the predicate errors]
expected: FAIL
[some(): The returned promise rejects with an error if the source observable errors]
expected: FAIL
[some(): The returned promise resolves as false if the source observable completes without emitting a value]
expected: FAIL
[some(): The return promise rejects with a DOMException if the signal is aborted]
expected: FAIL