Update web-platform-tests to revision b'fc557e215e11221c91de4f283539725ef2f35928' (#35741)

Signed-off-by: WPT Sync Bot <ghbot+wpt-sync@servo.org>
This commit is contained in:
Servo WPT Sync 2025-03-02 13:18:38 +01:00 committed by GitHub
parent e7e8ccea20
commit 5ba9cfe809
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2322 changed files with 43591 additions and 31593 deletions

View file

@ -0,0 +1,9 @@
[Construct.tentative.html]
[A constructor with only a scoped custom element registry definition should fail upon construction]
expected: FAIL
[A constructor uses the global registry to create an element]
expected: FAIL
[A constructor creating an element from another registry before or after super call should work]
expected: FAIL

View file

@ -0,0 +1,9 @@
[CustomElementRegistry-define.tentative.html]
[Create a CustomElementRegistry not identically equal to window.customElements]
expected: FAIL
[Defining an element in the global registry does not add a definition to a scoped CustomElementRegistry]
expected: FAIL
[Defining an element in a scoped global registry does not add a definition to the global registry]
expected: FAIL

View file

@ -0,0 +1,21 @@
[CustomElementRegistry-initialize.tentative.html]
[initialize is a function on both global and scoped CustomElementRegistry]
expected: FAIL
[initialize sets element.customElements to the global registry]
expected: FAIL
[initialize does not set the registry of nested shadow tree to the global registry]
expected: FAIL
[initialize sets element.customElements to a scoped registry]
expected: FAIL
[initialize does not set the registry of nested shadow tree to a scoped registry]
expected: FAIL
[initialize sets element.customElements permantently]
expected: FAIL
[initialize is no-op on a subtree with a non-null registry]
expected: FAIL

View file

@ -0,0 +1,12 @@
[CustomElementRegistry-upgrade.tentative.html]
[upgrade is a function on both global and scoped CustomElementRegistry]
expected: FAIL
[upgrade is a no-op when called on a shadow root with no association]
expected: FAIL
[upgrade should upgrade a candidate element when called on a shadow root with an association]
expected: FAIL
[upgrade should not upgrade a candidate element not associated with the registry]
expected: FAIL

View file

@ -0,0 +1,2 @@
[Document-createElement.tentative.html]
expected: ERROR

View file

@ -0,0 +1,2 @@
[Document-createElementNS.tentative.html]
expected: ERROR

View file

@ -0,0 +1,2 @@
[Document-importNode.tentative.html]
expected: ERROR

View file

@ -0,0 +1,9 @@
[Element-customElements-exceptions.tentative.html]
[customElements on a failed custom element created by calling createElement on CustomElementRegistry should return the registry]
expected: FAIL
[customElements on a failed custom element created by setting innerHTML should return the associated scoped registry]
expected: FAIL
[customElements on a failed custom element created by parser should return the specified custom regsitry]
expected: FAIL

View file

@ -0,0 +1,30 @@
[Element-customElements.tentative.html]
[customElements on a newly constrcuted element should return window.customElements by default]
expected: FAIL
[customElements on an element inside a declarative shadow DOM should return window.customElements by default]
expected: FAIL
[customElements on an element inside a declarative shadow DOM with shadowrootcustomelements should return null]
expected: FAIL
[customElements on a clone of a declarative shadow tree with shadowrootcustomelements should return null]
expected: FAIL
[customElements on a clone of a declarative shadow tree with shadowrootcustomelements should return the global registry after getting inserted into a document]
expected: FAIL
[customElements on an element inside a declarative shadow DOM with shadowrootcustomelements should return the scoped registry after calling initialize]
expected: FAIL
[customElements on a builtin element created by calling createElement on CustomElementRegistry should return the registry]
expected: FAIL
[customElements on an upgarde candidate created by calling createElement on CustomElementRegistry should return the registry]
expected: FAIL
[customElements on an unknown element created by calling createElement on CustomElementRegistry should return the registry]
expected: FAIL
[customElements on a defined custom element created by calling createElement on CustomElementRegistry should return the registry]
expected: FAIL

View file

@ -0,0 +1,6 @@
[Element-innerHTML.tentative.html]
[innerHTML on a disconnected element should use the scoped registry it was created with]
expected: FAIL
[innerHTML on an inserted element should continue to use the scoped registry it was created with]
expected: FAIL

View file

@ -0,0 +1,12 @@
[ShadowRoot-init-customElements.tentative.html]
[A newly attached disconnected ShadowRoot should use the global registry by default]
expected: FAIL
[A newly attached connected ShadowRoot should use the global registry by default]
expected: FAIL
[A newly attached disconnected ShadowRoot should use the scoped registry if explicitly specified in attachShadow]
expected: FAIL
[A newly attached connected ShadowRoot should use the scoped registry if explicitly specified in attachShadow]
expected: FAIL

View file

@ -0,0 +1,12 @@
[ShadowRoot-innerHTML.tentative.html]
[innerHTML on a shadow root should use the scoped registry]
expected: FAIL
[innerHTML on a connected shadow root should use the associated scoped registry]
expected: FAIL
[innerHTML on a connected shadow root should not upgrade a custom element inside a template element]
expected: FAIL
[innerHTML on a connected shadow root should be able to create an unknown element]
expected: FAIL

View file

@ -0,0 +1,9 @@
[template.tentative.window.html]
[shadowRootCustomElements reflects as string]
expected: FAIL
[Serializing a ShadowRoot with a null registry]
expected: FAIL
[Serializing a ShadowRoot with a registry that differs from its host]
expected: FAIL