mirror of
https://github.com/servo/servo.git
synced 2025-09-30 08:39:16 +01:00
Enable Shadow DOM for tests (#34299)
* Enable shadowdom implementation in all tests. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Update test expectations. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
parent
c73e4baca2
commit
910e8dc89f
207 changed files with 4735 additions and 260 deletions
36
tests/wpt/meta/shadow-dom/Document-caretPositionFromPoint.tentative.html.ini
vendored
Normal file
36
tests/wpt/meta/shadow-dom/Document-caretPositionFromPoint.tentative.html.ini
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
[Document-caretPositionFromPoint.tentative.html]
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to an input element which is the offsetNode.]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to a textarea element which is the offsetNode.]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to a closed shadaw tree when the shadow tree is specified as an argument]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location when the non-intersecting shadow tree is specified as an argument]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to an input element when the shadow tree is specified as an argument.]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to the input element's shadow host's parent when the shadow tree is not specified as an argument.]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to the shadow host's parent when the shadow tree is not specified as an argument]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to the outer shadow host's parent when the point is in an inner shadow tree and no shadow tree is specified as an argument]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to the inner shadow tree when the point is in an inner shadow tree and the inner shadow tree is specified as an argument]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to the outer shadow tree when the point is in an inner shadow tree and the outer shadow tree is specified as an argument]
|
||||
expected: FAIL
|
||||
|
||||
[document.caretPositionFromPoint() should return a CaretPosition at the specified location pointing to the inner shadow tree when the point is in an inner shadow tree and the inner shadow tree and the outer shadow tree are specified as an argument]
|
||||
expected: FAIL
|
13
tests/wpt/meta/shadow-dom/Document-prototype-currentScript.html.ini
vendored
Normal file
13
tests/wpt/meta/shadow-dom/Document-prototype-currentScript.html.ini
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Document-prototype-currentScript.html]
|
||||
expected: TIMEOUT
|
||||
[document.currentScript must not be set to a script element that loads an external script in an open shadow tree]
|
||||
expected: TIMEOUT
|
||||
|
||||
[document.currentScript must not be set to a script element that loads an external script in a closed shadow tree]
|
||||
expected: NOTRUN
|
||||
|
||||
[document.currentScript must be set to a script element that loads an external script that was in an open shadow tree and then removed]
|
||||
expected: NOTRUN
|
||||
|
||||
[document.currentScript must be set to a script element that loads an external script that was in a closed shadow tree and then removed]
|
||||
expected: NOTRUN
|
123
tests/wpt/meta/shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html.ini
vendored
Normal file
123
tests/wpt/meta/shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html.ini
vendored
Normal file
|
@ -0,0 +1,123 @@
|
|||
[DocumentOrShadowRoot-prototype-elementFromPoint.html]
|
||||
[document.elementFromPoint and shadow.ElementFromPoint must return the shadow host of the hit-tested text node when the hit-tested text node is a direct child of the root and the host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadow.ElementFromPoint must return the shadow host of the hit-tested text node when the hit-tested text node is a direct child of the root and the host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadow.ElementFromPoint must return the shadow host of the hit-tested text node when the hit-tested text node is a direct child of the root and the host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadowRoot.elementFromPoint must return the shadow host when the hit-tested text node is assigned to a slot and the host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadowRoot.elementFromPoint must return the shadow host when the hit-tested text node is assigned to a slot and the host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadowRoot.elementFromPoint must return the shadow host when the hit-tested text node is assigned to a slot and the host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadowRoot.elementFromPoint must return the element assigned to a slot when hit-tested text node under an element is assigned to a slot in the shadow tree and the shadow host of the slot has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadowRoot.elementFromPoint must return the element assigned to a slot when hit-tested text node under an element is assigned to a slot in the shadow tree and the shadow host of the slot has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint and shadowRoot.elementFromPoint must return the element assigned to a slot when hit-tested text node under an element is assigned to a slot in the shadow tree and the shadow host of the slot has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint must return the shadow host of the hit-tested element under a shadow root and shadowRoot.elementFromPoint must return the element parent of the hit-tested text node under the point when the shadow host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint must return the shadow host of the hit-tested element under a shadow root and shadowRoot.elementFromPoint must return the element parent of the hit-tested text node under the point when the shadow host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint must return the shadow host of the hit-tested element under a shadow root and shadowRoot.elementFromPoint must return the element parent of the hit-tested text node under the point when the shadow host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint must return the shadow host and shadowRoot.elementFromPoint must return the slot parent of the fallback text when the hit-tested text node is a fallback content and the host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint must return the shadow host and shadowRoot.elementFromPoint must return the slot parent of the fallback text when the hit-tested text node is a fallback content and the host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint must return the shadow host and shadowRoot.elementFromPoint must return the slot parent of the fallback text when the hit-tested text node is a fallback content and the host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint, innerShadow.elementFromPoint must return a child element assigned to a slot when the hit-tested text node is assigned to a slot in the shadow tree of the child element and the outer shadow host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint, innerShadow.elementFromPoint must return a child element assigned to a slot when the hit-tested text node is assigned to a slot in the shadow tree of the child element and the outer shadow host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint, innerShadow.elementFromPoint must return a child element assigned to a slot when the hit-tested text node is assigned to a slot in the shadow tree of the child element and the outer shadow host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint, innerShadow.elementFromPoint must return a child element with its own shadow tree assigned to a slot when the hit-tested text node is its direct child and the outer shadow host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint, innerShadow.elementFromPoint must return a child element with its own shadow tree assigned to a slot when the hit-tested text node is its direct child and the outer shadow host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint, innerShadow.elementFromPoint must return a child element with its own shadow tree assigned to a slot when the hit-tested text node is its direct child and the outer shadow host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint must return a child element with its own shadow tree assigned to a slot when the hit-tested text node is a child of another element and innerShadow.elementFromPoint must return the parent element of the hit-tested text node under it when the outer shadow host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint must return a child element with its own shadow tree assigned to a slot when the hit-tested text node is a child of another element and innerShadow.elementFromPoint must return the parent element of the hit-tested text node under it when the outer shadow host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementFromPoint, shadowRoot.elementFromPoint must return a child element with its own shadow tree assigned to a slot when the hit-tested text node is a child of another element and innerShadow.elementFromPoint must return the parent element of the hit-tested text node under it when the outer shadow host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadow.elementsFromPoint must return the shadow host and its ancestors of the hit-tested text node when the hit-tested text node is a direct child of the root and the host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadow.elementsFromPoint must return the shadow host and its ancestors of the hit-tested text node when the hit-tested text node is a direct child of the root and the host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadow.elementsFromPoint must return the shadow host and its ancestors of the hit-tested text node when the hit-tested text node is a direct child of the root and the host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadowRoot.elementsFromPoint must return the shadow host and its ancestors when the hit-tested text node is assigned to a slot and the host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadowRoot.elementsFromPoint must return the shadow host and its ancestors when the hit-tested text node is assigned to a slot and the host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadowRoot.elementsFromPoint must return the shadow host and its ancestors when the hit-tested text node is assigned to a slot and the host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadowRoot.elementsFromPoint must return the element assigned to a slot and its non-shadow ancestors when hit-tested text node under an element is assigned to a slot in the shadow tree and the shadow host of the slot has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadowRoot.elementsFromPoint must return the element assigned to a slot and its non-shadow ancestors when hit-tested text node under an element is assigned to a slot in the shadow tree and the shadow host of the slot has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint and shadowRoot.elementsFromPoint must return the element assigned to a slot and its non-shadow ancestors when hit-tested text node under an element is assigned to a slot in the shadow tree and the shadow host of the slot has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint must return the shadow host and its ancestors of the hit-tested element under a shadow root andshadowRoot.elementsFromPoint must return the element parent and its non-shadow ancestors of the hit-tested text node under the point when the shadow host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint must return the shadow host and its ancestors of the hit-tested element under a shadow root andshadowRoot.elementsFromPoint must return the element parent and its non-shadow ancestors of the hit-tested text node under the point when the shadow host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint must return the shadow host and its ancestors of the hit-tested element under a shadow root andshadowRoot.elementsFromPoint must return the element parent and its non-shadow ancestors of the hit-tested text node under the point when the shadow host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint must return the shadow host and its ancestors and shadowRoot.elementsFromPoint must return the slot parent of the fallback text and its non-shadow ancestors when the hit-tested text node is a fallback content and the host has display: inline]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint must return the shadow host and its ancestors and shadowRoot.elementsFromPoint must return the slot parent of the fallback text and its non-shadow ancestors when the hit-tested text node is a fallback content and the host has display: block]
|
||||
expected: FAIL
|
||||
|
||||
[document.elementsFromPoint must return the shadow host and its ancestors and shadowRoot.elementsFromPoint must return the slot parent of the fallback text and its non-shadow ancestors when the hit-tested text node is a fallback content and the host has display: inline-block]
|
||||
expected: FAIL
|
||||
|
||||
[shadowRoot.elementsFromPoint must behave the same with document.elementsFromPoint regarding HTML element]
|
||||
expected: FAIL
|
||||
|
||||
[elementsFromPoint should return all elements under a point, even when context object is not connected]
|
||||
expected: FAIL
|
15
tests/wpt/meta/shadow-dom/Element-interface-attachShadow-custom-element.html.ini
vendored
Normal file
15
tests/wpt/meta/shadow-dom/Element-interface-attachShadow-custom-element.html.ini
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
[Element-interface-attachShadow-custom-element.html]
|
||||
[Element.attachShadow must create an instance of ShadowRoot for autonomous custom elements]
|
||||
expected: FAIL
|
||||
|
||||
[Element.attachShadow must create an instance of ShadowRoot for undefined autonomous custom elements]
|
||||
expected: FAIL
|
||||
|
||||
[Element.attachShadow for an autonomous custom element with disabledFeatures=["shadow"\] should throw a NotSupportedError]
|
||||
expected: FAIL
|
||||
|
||||
[Element.attachShadow for a customized built-in element with disabledFeatures=["shadow"\] should throw a NotSupportedError]
|
||||
expected: FAIL
|
||||
|
||||
[Element.attachShadow for a custom element with disabledFeatures=["SHADOW"\] should not throw a NotSupportedError]
|
||||
expected: FAIL
|
6
tests/wpt/meta/shadow-dom/Element-interface-attachShadow.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/Element-interface-attachShadow.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Element-interface-attachShadow.html]
|
||||
[Element.attachShadow must throw a TypeError if mode is not "open" or "closed"]
|
||||
expected: FAIL
|
||||
|
||||
[Element.attachShadow must throw a NotSupportedError if the context object already hosts a shadow tree]
|
||||
expected: FAIL
|
9
tests/wpt/meta/shadow-dom/Element-interface-shadowRoot-attribute.html.ini
vendored
Normal file
9
tests/wpt/meta/shadow-dom/Element-interface-shadowRoot-attribute.html.ini
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Element-interface-shadowRoot-attribute.html]
|
||||
[shadowRoot must be defined on Element prototype]
|
||||
expected: FAIL
|
||||
|
||||
[shadowRoot attribute must return the open shadow root associated with the element]
|
||||
expected: FAIL
|
||||
|
||||
[shadowRoot attribute must return null if the shadow root attached to the element is closed]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/Extensions-to-Event-Interface.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/Extensions-to-Event-Interface.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[Extensions-to-Event-Interface.html]
|
||||
expected: CRASH
|
54
tests/wpt/meta/shadow-dom/HTMLSlotElement-interface.html.ini
vendored
Normal file
54
tests/wpt/meta/shadow-dom/HTMLSlotElement-interface.html.ini
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
[HTMLSlotElement-interface.html]
|
||||
[HTMLSlotElement must be defined on window]
|
||||
expected: FAIL
|
||||
|
||||
["name" attribute on HTMLSlotElement must reflect "name" attribute]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes() on a HTMLSlotElement must return an empty array when the slot element is not in a tree or in a document tree]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":false}) on a HTMLSlotElement must return an empty array when the slot element is not in a tree or in a document tree]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":true}) on a HTMLSlotElement must return an empty array when the slot element is not in a tree or in a document tree]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes() must return the list of assigned nodes when none of the assigned nodes themselves are slots]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":false}) must return the list of assigned nodes when none of the assigned nodes themselves are slots]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":true}) must return the list of assigned nodes when none of the assigned nodes themselves are slots]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes() must update when slot and name attributes are modified]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":false}) must update when slot and name attributes are modified]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":true}) must update when slot and name attributes are modified]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes() must update when a default slot is introduced dynamically by a slot rename]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":false}) must update when a default slot is introduced dynamically by a slot rename]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":true}) must update when a default slot is introduced dynamically by a slot rename]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes() must update when slot elements are inserted or removed]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":false}) must update when slot elements are inserted or removed]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({"flattened":true}) must update when slot elements are inserted or removed]
|
||||
expected: FAIL
|
||||
|
||||
[assignedNodes({flatten: true}) must return the distributed nodes, and assignedNodes() and assignedNodes({flatten: false}) must returned the assigned nodes]
|
||||
expected: FAIL
|
4
tests/wpt/meta/shadow-dom/MouseEvent-prototype-offsetX-offsetY.html.ini
vendored
Normal file
4
tests/wpt/meta/shadow-dom/MouseEvent-prototype-offsetX-offsetY.html.ini
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
[MouseEvent-prototype-offsetX-offsetY.html]
|
||||
expected: ERROR
|
||||
[MouseEvent's offsetX and offsetY attributes must be relative to the target.]
|
||||
expected: FAIL
|
9
tests/wpt/meta/shadow-dom/Node-prototype-cloneNode.html.ini
vendored
Normal file
9
tests/wpt/meta/shadow-dom/Node-prototype-cloneNode.html.ini
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Node-prototype-cloneNode.html]
|
||||
[cloneNode on a shadow root in open mode must throw a NotSupportedError]
|
||||
expected: FAIL
|
||||
|
||||
[cloneNode on a shadow root in closed mode must throw a NotSupportedError]
|
||||
expected: FAIL
|
||||
|
||||
[cloneNode on an element with an open shadow root should not clone its shadow root]
|
||||
expected: FAIL
|
24
tests/wpt/meta/shadow-dom/ShadowRoot-interface.html.ini
vendored
Normal file
24
tests/wpt/meta/shadow-dom/ShadowRoot-interface.html.ini
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
[ShadowRoot-interface.html]
|
||||
[ShadowRoot.activeElement must return the focused element of the context object when shadow root is open.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.activeElement must return the focused element of the context object when shadow root is closed.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.innerHTML must return the result of the HTML fragment serialization algorithm when shadow root is open.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.innerHTML must return the result of the HTML fragment serialization algorithm when shadow root is closed.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.innerHTML must replace all with the result of invoking the fragment parsing algorithm when shadow root is open.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.innerHTML must replace all with the result of invoking the fragment parsing algorithm when shadow root is closed.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.styleSheets must return a StyleSheetList sequence containing the shadow root style sheets when shadow root is open.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.styleSheets must return a StyleSheetList sequence containing the shadow root style sheets when shadow root is closed.]
|
||||
expected: FAIL
|
12
tests/wpt/meta/shadow-dom/Slottable-mixin.html.ini
vendored
Normal file
12
tests/wpt/meta/shadow-dom/Slottable-mixin.html.ini
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
[Slottable-mixin.html]
|
||||
[assignedSlot attribute must be defined on Element and Text interfaces]
|
||||
expected: FAIL
|
||||
|
||||
[assignedSlot must return null when the node does not have an assigned node]
|
||||
expected: FAIL
|
||||
|
||||
[assignedSlot must return the assigned slot]
|
||||
expected: FAIL
|
||||
|
||||
[assignedSlot must return null when the assigned slot element is inside a closed shadow tree]
|
||||
expected: FAIL
|
12
tests/wpt/meta/shadow-dom/capturing-and-bubbling-event-listeners-across-shadow-trees.html.ini
vendored
Normal file
12
tests/wpt/meta/shadow-dom/capturing-and-bubbling-event-listeners-across-shadow-trees.html.ini
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
[capturing-and-bubbling-event-listeners-across-shadow-trees.html]
|
||||
[Capturing event listeners should be invoked before bubbling event listeners when an event is dispatched inside a shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Capturing event listeners should be invoked before bubbling event listeners when an event is dispatched inside a doubly nested shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Capturing event listeners should be invoked before bubbling event listeners when an event is dispatched via a slot]
|
||||
expected: FAIL
|
||||
|
||||
[Capturing event listeners should be invoked before bubbling event listeners when an event is dispatched inside a shadow tree which passes through another shadow tree]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/crashtests/move-to-new-tree-1343016.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/crashtests/move-to-new-tree-1343016.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[move-to-new-tree-1343016.html]
|
||||
expected: TIMEOUT
|
2
tests/wpt/meta/shadow-dom/declarative/declarative-after-attachshadow.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/declarative-after-attachshadow.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[declarative-after-attachshadow.html]
|
||||
expected: CRASH
|
1944
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-attachment.html.ini
vendored
Normal file
1944
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-attachment.html.ini
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,3 @@
|
|||
[declarative-shadow-dom-available-to-element-internals.html]
|
||||
[Declarative Shadow DOM: shadow root should be available to element internals]
|
||||
expected: FAIL
|
63
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-basic.html.ini
vendored
Normal file
63
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-basic.html.ini
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
[declarative-shadow-dom-basic.html]
|
||||
[Declarative Shadow DOM: Basic test]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: Feature detection]
|
||||
expected: FAIL
|
||||
|
||||
[Shadowrootmode reflection]
|
||||
expected: FAIL
|
||||
|
||||
[Shadowrootmode reflection, setter]
|
||||
expected: FAIL
|
||||
|
||||
[Shadowrootdelegatesfocus reflection]
|
||||
expected: FAIL
|
||||
|
||||
[Shadowrootdelegatesfocus reflection, setter]
|
||||
expected: FAIL
|
||||
|
||||
[Shadowrootclonable reflection]
|
||||
expected: FAIL
|
||||
|
||||
[Shadowrootclonable reflection, setter]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: Fragment parser basic test]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: Invalid shadow root attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: Closed shadow root attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: Missing closing tag]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: delegates focus attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: clonable attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: Multiple roots]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: template containing declarative shadow root (with shadowrootclonable)]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: template containing (deeply nested) declarative shadow root]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: template containing a template containing declarative shadow root]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: template containing declarative shadow root and UA shadow root]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: declarative shadow roots are not supported by the template element]
|
||||
expected: FAIL
|
||||
|
||||
[Declarative Shadow DOM: explicit test that exceptions are not thrown]
|
||||
expected: FAIL
|
25
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-opt-in.html.ini
vendored
Normal file
25
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-opt-in.html.ini
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
[declarative-shadow-dom-opt-in.html]
|
||||
expected: TIMEOUT
|
||||
[Non-fragment parsing needs no opt-in]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML on shadowRoot]
|
||||
expected: FAIL
|
||||
|
||||
[document.write allowed from synchronous script loaded from main document]
|
||||
expected: FAIL
|
||||
|
||||
[document.write disallowed on fresh document]
|
||||
expected: FAIL
|
||||
|
||||
[iframe]
|
||||
expected: FAIL
|
||||
|
||||
[iframe, no sandbox]
|
||||
expected: FAIL
|
||||
|
||||
[sandboxed iframe allows declarative Shadow DOM]
|
||||
expected: TIMEOUT
|
||||
|
||||
[iframe with no sandbox allows declarative Shadow DOM]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-repeats-2.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-repeats-2.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[declarative-shadow-dom-repeats-2.html]
|
||||
[Repeated declarative shadow roots keep only the first]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-repeats.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-repeats.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[declarative-shadow-dom-repeats.html]
|
||||
expected: CRASH
|
3
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-write-to-iframe.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/declarative/declarative-shadow-dom-write-to-iframe.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[declarative-shadow-dom-write-to-iframe.html]
|
||||
[`document.write` on inner iframe handles declarative shadow DOM]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/declarative/gethtml-ordering.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/gethtml-ordering.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[gethtml-ordering.html]
|
||||
expected: ERROR
|
2
tests/wpt/meta/shadow-dom/declarative/gethtml.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/gethtml.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[gethtml.html]
|
||||
expected: TIMEOUT
|
991
tests/wpt/meta/shadow-dom/declarative/getinnerhtml.tentative.html.ini
vendored
Normal file
991
tests/wpt/meta/shadow-dom/declarative/getinnerhtml.tentative.html.ini
vendored
Normal file
|
@ -0,0 +1,991 @@
|
|||
[getinnerhtml.tentative.html]
|
||||
expected: TIMEOUT
|
||||
[Element.getInnerHTML() on <a>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <a>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <abbr>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <abbr>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <address>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <address>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <area>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <area>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <article>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <article>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <article>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <article>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <article>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <article>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <article>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <article>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <aside>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <aside>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <aside>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <aside>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <aside>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <aside>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <aside>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <aside>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <audio>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <audio>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <b>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <b>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <base>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <base>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <bdi>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <bdi>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <bdo>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <bdo>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <blockquote>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <blockquote>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <blockquote>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <blockquote>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <blockquote>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <blockquote>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <blockquote>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <blockquote>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <body>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <body>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <body>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <body>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <body>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <body>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <body>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <body>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <br>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <br>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <button>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <button>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <canvas>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <canvas>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <caption>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <caption>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <cite>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <cite>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <code>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <code>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <col>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <col>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <colgroup>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <colgroup>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <data>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <data>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <datalist>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <datalist>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <dd>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <dd>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <del>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <del>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <details>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <details>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <dfn>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <dfn>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <dialog>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <dialog>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <div>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <div>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <div>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <div>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <div>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <div>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <div>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <div>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <dl>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <dl>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <dt>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <dt>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <em>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <em>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <embed>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <embed>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <fieldset>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <fieldset>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <figcaption>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <figcaption>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <figure>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <figure>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <footer>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <footer>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <footer>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <footer>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <footer>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <footer>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <footer>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <footer>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <form>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <form>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h1>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h1>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h1>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h1>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h1>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h1>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h1>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h1>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h2>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h2>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h2>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h2>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h2>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h2>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h2>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h2>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h3>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h3>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h3>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h3>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h3>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h3>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h3>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h3>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h4>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h4>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h4>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h4>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h4>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h4>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h4>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h4>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h5>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h5>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h5>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h5>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h5>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h5>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h5>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h5>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h6>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h6>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h6>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <h6>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h6>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h6>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h6>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <h6>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <head>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <head>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <header>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <header>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <header>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <header>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <header>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <header>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <header>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <header>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <hr>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <hr>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <html>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <html>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <i>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <i>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <iframe>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <iframe>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <img>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <img>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <input>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <input>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <ins>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <ins>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <kbd>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <kbd>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <label>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <label>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <legend>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <legend>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <li>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <li>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <link>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <link>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <main>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <main>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <main>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <main>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <main>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <main>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <main>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <main>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <map>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <map>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <mark>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <mark>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <menu>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <menu>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <meta>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <meta>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <meter>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <meter>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <nav>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <nav>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <nav>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <nav>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <nav>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <nav>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <nav>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <nav>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <noscript>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <noscript>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <object>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <object>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <ol>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <ol>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <optgroup>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <optgroup>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <option>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <option>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <output>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <output>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <p>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <p>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <p>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <p>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <p>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <p>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <p>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <p>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <param>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <param>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <pre>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <pre>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <progress>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <progress>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <q>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <q>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <rp>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <rp>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <rt>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <rt>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <ruby>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <ruby>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <s>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <s>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <samp>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <samp>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <script>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <script>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <section>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <section>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <section>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <section>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <section>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <section>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <section>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <section>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <select>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <select>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <slot>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <slot>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <small>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <small>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <source>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <source>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <span>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <span>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <span>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <span>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <span>, with mode=open, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <span>, with mode=closed, delegatesFocus=false.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <span>, with mode=open, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <span>, with mode=closed, delegatesFocus=true.]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <strong>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <strong>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <style>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <style>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <sub>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <sub>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <sup>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <sup>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <summary>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <summary>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <table>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <table>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <tbody>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <tbody>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <td>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <td>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <template>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <template>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <textarea>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <textarea>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <tfoot>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <tfoot>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <th>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <th>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <thead>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <thead>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <time>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <time>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <title>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <title>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <tr>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <tr>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <track>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <track>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <u>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <u>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <ul>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <ul>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <var>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <var>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <video>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <video>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <wbr>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <wbr>]
|
||||
expected: FAIL
|
||||
|
||||
[Element.getInnerHTML() on <htmlunknown>]
|
||||
expected: FAIL
|
||||
|
||||
[ShadowRoot.getInnerHTML() on <htmlunknown>]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/declarative/innerhtml-before-closing-tag.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/innerhtml-before-closing-tag.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[innerhtml-before-closing-tag.html]
|
||||
expected: ERROR
|
2
tests/wpt/meta/shadow-dom/declarative/innerhtml-on-ordinary-template.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/innerhtml-on-ordinary-template.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[innerhtml-on-ordinary-template.html]
|
||||
expected: CRASH
|
6
tests/wpt/meta/shadow-dom/declarative/move-template-before-closing-tag.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/declarative/move-template-before-closing-tag.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[move-template-before-closing-tag.html]
|
||||
[Moving the template node during parsing should attach to initial parent (content before observer)]
|
||||
expected: FAIL
|
||||
|
||||
[Moving the template node during parsing should attach to initial parent (content after observer)]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/declarative/script-access.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/declarative/script-access.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[script-access.html]
|
||||
expected: ERROR
|
2
tests/wpt/meta/shadow-dom/directionality-001.tentative.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/directionality-001.tentative.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[directionality-001.tentative.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/directionality-002.tentative.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/directionality-002.tentative.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[directionality-002.tentative.html]
|
||||
expected: CRASH
|
7
tests/wpt/meta/shadow-dom/event-composed-path-after-dom-mutation.html.ini
vendored
Normal file
7
tests/wpt/meta/shadow-dom/event-composed-path-after-dom-mutation.html.ini
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
[event-composed-path-after-dom-mutation.html]
|
||||
expected: TIMEOUT
|
||||
[Event.composedPath() should return the same result even if DOM is mutated (1/2)]
|
||||
expected: TIMEOUT
|
||||
|
||||
[Event.composedPath() should return the same result even if DOM is mutated (2/2)]
|
||||
expected: TIMEOUT
|
27
tests/wpt/meta/shadow-dom/event-composed-path-with-related-target.html.ini
vendored
Normal file
27
tests/wpt/meta/shadow-dom/event-composed-path-with-related-target.html.ini
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
[event-composed-path-with-related-target.html]
|
||||
[Event path for an event with a relatedTarget. target and relaterTarget do not share any shadow-including ancestor. target is in a shadow tree.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. target and relaterTarget do not share any shadow-including ancestor. target is not in a shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. target and relaterTarget share the same shadow-including ancestor. Both are in shadow trees.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. relatedTarget is a shadow-including ancestor of target.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. target is a shadow-including ancestor of relatedTarget.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. target is assigned to a slot.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. relatedTarget is assigned to a slot.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. Event should be dispatched at every slots.]
|
||||
expected: FAIL
|
||||
|
||||
[Event path for an event with a relatedTarget. Event should be dispatched at every slots. relatedTarget should be correctly retargeted.]
|
||||
expected: FAIL
|
30
tests/wpt/meta/shadow-dom/event-composed-path.html.ini
vendored
Normal file
30
tests/wpt/meta/shadow-dom/event-composed-path.html.ini
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
[event-composed-path.html]
|
||||
[Event Path with an open ShadowRoot.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with a closed ShadowRoot.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with nested ShadowRoots: open > open.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with nested ShadowRoots: open > closed.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with nested ShadowRoots: closed > open.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with nested ShadowRoots: closed > closed.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with a slot in an open Shadow Root.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with a slot in a closed Shadow Root.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with slots in nested ShadowRoots: open > open.]
|
||||
expected: FAIL
|
||||
|
||||
[Event Path with slots in nested ShadowRoots: closed > closed.]
|
||||
expected: FAIL
|
18
tests/wpt/meta/shadow-dom/event-composed.html.ini
vendored
Normal file
18
tests/wpt/meta/shadow-dom/event-composed.html.ini
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
[event-composed.html]
|
||||
[A new events composed value should be set to false by default.]
|
||||
expected: FAIL
|
||||
|
||||
[Users should be able to set a composed value.]
|
||||
expected: FAIL
|
||||
|
||||
[An event should not be scoped if composed is specified]
|
||||
expected: FAIL
|
||||
|
||||
[A synthetic MouseEvent with composed=true should not be scoped]
|
||||
expected: FAIL
|
||||
|
||||
[A synthetic FocusEvent with composed=true should not be scoped]
|
||||
expected: FAIL
|
||||
|
||||
[A UA click event should not be scoped]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/event-dispatch-order.tentative.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/event-dispatch-order.tentative.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[event-dispatch-order.tentative.html]
|
||||
[Event dispatch order: capture listerns should be called in capturing phase at a shadow host]
|
||||
expected: FAIL
|
36
tests/wpt/meta/shadow-dom/event-inside-shadow-tree.html.ini
vendored
Normal file
36
tests/wpt/meta/shadow-dom/event-inside-shadow-tree.html.ini
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
[event-inside-shadow-tree.html]
|
||||
[Firing an event inside a grand child of a detached open mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a grand child of a detached closed mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a grand child of an in-document open mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a grand child of an in-document closed mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a detached open mode shadow tree inside open mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a detached open mode shadow tree inside closed mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a detached closed mode shadow tree inside open mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside a detached closed mode shadow tree inside closed mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside an in-document open mode shadow tree inside open mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside an in-document open mode shadow tree inside closed mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside an in-document closed mode shadow tree inside open mode shadow tree]
|
||||
expected: FAIL
|
||||
|
||||
[Firing an event inside an in-document closed mode shadow tree inside closed mode shadow tree]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/event-inside-slotted-node.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/event-inside-slotted-node.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[event-inside-slotted-node.html]
|
||||
expected: CRASH
|
48
tests/wpt/meta/shadow-dom/event-post-dispatch.html.ini
vendored
Normal file
48
tests/wpt/meta/shadow-dom/event-post-dispatch.html.ini
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
[event-post-dispatch.html]
|
||||
[Event properties post dispatch without ShadowRoots (composed: true).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch without ShadowRoots (composed: false).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with an open ShadowRoot (composed: true).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with an open ShadowRoot (composed: false).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with a closed ShadowRoot (composed: true).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with a closed ShadowRoot (composed: false).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with nested ShadowRoots (composed: true).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with nested ShadowRoots (composed: false).]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the same shadow tree. (composed: true)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the same shadow tree. (composed: false)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the document tree and the shadow tree. (composed: true)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the document tree and the shadow tree. (composed: false)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the different shadow trees. (composed: true)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch with relatedTarget in the different shadow trees. (composed: false)]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch when target get moved out of the shadow tree by event listener]
|
||||
expected: FAIL
|
||||
|
||||
[Event properties post dispatch when target get moved into the the shadow tree by event listener]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/event-with-related-target.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/event-with-related-target.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[event-with-related-target.html]
|
||||
expected: CRASH
|
3
tests/wpt/meta/shadow-dom/focus-within-shadow.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/focus-within-shadow.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[focus-within-shadow.html]
|
||||
[Don't clear focus within shadow root if light DOM children are cleared]
|
||||
expected: FAIL
|
9
tests/wpt/meta/shadow-dom/focus/ShadowRoot-delegatesFocus.html.ini
vendored
Normal file
9
tests/wpt/meta/shadow-dom/focus/ShadowRoot-delegatesFocus.html.ini
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
[ShadowRoot-delegatesFocus.html]
|
||||
[default delegatesFocus value]
|
||||
expected: FAIL
|
||||
|
||||
[delegatesFocus set to false in init dict]
|
||||
expected: FAIL
|
||||
|
||||
[delegatesFocus set to true in init dict]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/focus/delegatesFocus-tabindex-change.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/focus/delegatesFocus-tabindex-change.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[delegatesFocus-tabindex-change.html]
|
||||
[Setting tabindex on the shadow host of a focused element with delegatesFocus should not change focus.]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-matches-on-shadow-host.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-matches-on-shadow-host.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[focus-pseudo-matches-on-shadow-host.html]
|
||||
expected: TIMEOUT
|
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-on-shadow-host-1.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-on-shadow-host-1.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[focus-pseudo-on-shadow-host-1.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-on-shadow-host-2.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-on-shadow-host-2.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[focus-pseudo-on-shadow-host-2.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-on-shadow-host-3.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/focus/focus-pseudo-on-shadow-host-3.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[focus-pseudo-on-shadow-host-3.html]
|
||||
expected: CRASH
|
36
tests/wpt/meta/shadow-dom/focus/focus-selector-delegatesFocus.html.ini
vendored
Normal file
36
tests/wpt/meta/shadow-dom/focus/focus-selector-delegatesFocus.html.ini
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
[focus-selector-delegatesFocus.html]
|
||||
[:focus applies to host with delegatesFocus=true when the shadow root's descendant has focus]
|
||||
expected: FAIL
|
||||
|
||||
[:focus does not apply to host with delegatesFocus=true when slotted element has focus]
|
||||
expected: FAIL
|
||||
|
||||
[:focus applies to host with delegatesFocus=true when an element in a nested shadow tree with delegatesFocus=true is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus should be removed from hosts with delegatesFocus=true when none of the elements in a nested shadow tree with delegatesFocus=true is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus applies to host with delegatesFocus=true when an element in a nested shadow tree with delegatesFocus=false is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus should be removed from hosts with delegatesFocus=true when none of the elements in a nested shadow tree with delegatesFocus=false is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus applies to host with delegatesFocus=false when the shadow root's descendant has focus]
|
||||
expected: FAIL
|
||||
|
||||
[:focus does not apply to host with delegatesFocus=false when slotted element has focus]
|
||||
expected: FAIL
|
||||
|
||||
[:focus applies to host with delegatesFocus=false when an element in a nested shadow tree with delegatesFocus=true is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus should be removed from hosts with delegatesFocus=false when none of the elements in a nested shadow tree with delegatesFocus=true is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus applies to host with delegatesFocus=false when an element in a nested shadow tree with delegatesFocus=false is focused]
|
||||
expected: FAIL
|
||||
|
||||
[:focus should be removed from hosts with delegatesFocus=false when none of the elements in a nested shadow tree with delegatesFocus=false is focused]
|
||||
expected: FAIL
|
6
tests/wpt/meta/shadow-dom/focus/focus-shadowhost-display-none.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/focus/focus-shadowhost-display-none.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[focus-shadowhost-display-none.html]
|
||||
[when shadow host itself is focused, it should match display:none, lose focus then becomes display:block again.]
|
||||
expected: FAIL
|
||||
|
||||
[when shadow host with delegatesFocus=true has focused element inside the shadow, it should also match display:none, then lose focus and become display:block again.]
|
||||
expected: FAIL
|
6
tests/wpt/meta/shadow-dom/form-control-form-attribute.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/form-control-form-attribute.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[form-control-form-attribute.html]
|
||||
[Shadow form control's form attribute should work also in shadow DOM.]
|
||||
expected: FAIL
|
||||
|
||||
[Form element as form control's ancestor should work also in shadow DOM.]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/getElementById-dynamic-001.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/getElementById-dynamic-001.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[getElementById-dynamic-001.html]
|
||||
[ShadowRoot.getElementById keeps working after host has been removed]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/imperative-slot-api-crash.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/imperative-slot-api-crash.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[imperative-slot-api-crash.html]
|
||||
expected: CRASH
|
33
tests/wpt/meta/shadow-dom/imperative-slot-api-slotchange.html.ini
vendored
Normal file
33
tests/wpt/meta/shadow-dom/imperative-slot-api-slotchange.html.ini
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
[imperative-slot-api-slotchange.html]
|
||||
[slotchange event must not fire synchronously.]
|
||||
expected: FAIL
|
||||
|
||||
[slotchange event should not fire when assignments do not change assignedNodes.]
|
||||
expected: FAIL
|
||||
|
||||
[slotchange event should not fire when same node is assigned.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event when slot's assigned nodes changes.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event on previous slot and new slot when node is reassigned.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event on node assignment and when assigned node is removed.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event when order of assigned nodes changes.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event when assigned node is removed.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event when removing a slot from Shadows Root that changes its assigned nodes.]
|
||||
expected: FAIL
|
||||
|
||||
[Fire slotchange event when assign node to nested slot, ensure event bubbles ups.]
|
||||
expected: FAIL
|
||||
|
||||
[Signal a slot change should be done in tree order.]
|
||||
expected: FAIL
|
45
tests/wpt/meta/shadow-dom/imperative-slot-api.html.ini
vendored
Normal file
45
tests/wpt/meta/shadow-dom/imperative-slot-api.html.ini
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
[imperative-slot-api.html]
|
||||
[attachShadow can take slotAssignment parameter.]
|
||||
expected: FAIL
|
||||
|
||||
[slot.attach() should take variadic not sequence.]
|
||||
expected: FAIL
|
||||
|
||||
[Imperative slot API can assign nodes in manual slot assignment.]
|
||||
expected: FAIL
|
||||
|
||||
[Order of slottables is preserved in manual slot assignment.]
|
||||
expected: FAIL
|
||||
|
||||
[Previously assigned slottable is moved to new slot when it's reassigned.]
|
||||
expected: FAIL
|
||||
|
||||
[Order and assignment of nodes are preserved during multiple assignment in a row.]
|
||||
expected: FAIL
|
||||
|
||||
[Assigning invalid nodes should be allowed.]
|
||||
expected: FAIL
|
||||
|
||||
[Moving a slot to a new host, the slot loses its previously assigned slottables.]
|
||||
expected: FAIL
|
||||
|
||||
[Moving a slot's tree order position within a shadow host has no impact on its assigned slottables.]
|
||||
expected: FAIL
|
||||
|
||||
[Appending slottable to different host, it loses slot assignment. It can be re-assigned within a new host.]
|
||||
expected: FAIL
|
||||
|
||||
[Previously assigned node should not be assigned if slot moved to a new shadow root. The node is re-assigned when moved back.]
|
||||
expected: FAIL
|
||||
|
||||
[Assignment with the same node in parameters should be ignored, first one wins.]
|
||||
expected: FAIL
|
||||
|
||||
[Removing a slot from DOM resets its slottable's slot assignment.]
|
||||
expected: FAIL
|
||||
|
||||
[Nodes can be assigned even if slots or nodes aren't in the same tree.]
|
||||
expected: FAIL
|
||||
|
||||
[Removing a node from the document does not break manually assigned slot linkage.]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/imperative-slot-fallback-clear.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/imperative-slot-fallback-clear.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[imperative-slot-fallback-clear.html]
|
||||
expected: CRASH
|
6
tests/wpt/meta/shadow-dom/imperative-slot-initial-fallback.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/imperative-slot-initial-fallback.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[imperative-slot-initial-fallback.html]
|
||||
[Unassigned imperative slot can render text node as the initial fallback]
|
||||
expected: FAIL
|
||||
|
||||
[Unassigned imperative slot can render element as the initial fallback]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/imperative-slot-layout-invalidation-001.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/imperative-slot-layout-invalidation-001.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[imperative-slot-layout-invalidation-001.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/innerHTML-setter.xhtml.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/innerHTML-setter.xhtml.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[innerHTML-setter.xhtml]
|
||||
expected: ERROR
|
2
tests/wpt/meta/shadow-dom/input-element-list.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/input-element-list.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[input-element-list.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/input-type-radio.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/input-type-radio.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[input-type-radio.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/layout-slot-no-longer-assigned.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/layout-slot-no-longer-assigned.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[layout-slot-no-longer-assigned.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/layout-slot-no-longer-fallback.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/layout-slot-no-longer-fallback.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[layout-slot-no-longer-fallback.html]
|
||||
expected: CRASH
|
3
tests/wpt/meta/shadow-dom/leaktests/html-collection.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/leaktests/html-collection.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[html-collection.html]
|
||||
[document.all should not contain shadow nodes]
|
||||
expected: FAIL
|
48
tests/wpt/meta/shadow-dom/offsetParent-across-shadow-boundaries.html.ini
vendored
Normal file
48
tests/wpt/meta/shadow-dom/offsetParent-across-shadow-boundaries.html.ini
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
[offsetParent-across-shadow-boundaries.html]
|
||||
[offsetParent must return the offset parent in the same shadow tree of open mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return the offset parent in the same shadow tree of closed mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return the offset parent in the same shadow tree of open mode even when nested]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return the offset parent in the same shadow tree of closed mode even when nested]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must skip offset parents of an element when the context object is assigned to a slot in a shadow tree of open mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must skip offset parents of an element when the context object is assigned to a slot in a shadow tree of closed mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must skip multiple offset parents of an element when the context object is assigned to a slot in a shadow tree of open mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must skip multiple offset parents of an element when the context object is assigned to a slot in a shadow tree of closed mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must skip offset parents of an element when the context object is assigned to a slot in nested shadow trees of open mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must skip offset parents of an element when the context object is assigned to a slot in nested shadow trees of closed mode]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must find the first offset parent which is a shadow-including ancestor of the context object even some shadow tree of open mode did not have any offset parent]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must find the first offset parent which is a shadow-including ancestor of the context object even some shadow tree of closed mode did not have any offset parent]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return null on a child element of a shadow host for the shadow tree in open mode which is not assigned to any slot]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return null on a child element of a shadow host for the shadow tree in closed mode which is not assigned to any slot]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return null on a child element of a shadow host for the shadow tree in open mode which is not in the flat tree]
|
||||
expected: FAIL
|
||||
|
||||
[offsetParent must return null on a child element of a shadow host for the shadow tree in closed mode which is not in the flat tree]
|
||||
expected: FAIL
|
6
tests/wpt/meta/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/offsetTop-offsetLeft-across-shadow-boundaries.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[offsetTop-offsetLeft-across-shadow-boundaries.html]
|
||||
[Verifies that HTMLElement.offsetTop accounts for shadow boundaries.]
|
||||
expected: FAIL
|
||||
|
||||
[Verifies that HTMLElement.offsetTop accounts for shadow boundaries when nested in multiple shadow roots.]
|
||||
expected: FAIL
|
18
tests/wpt/meta/shadow-dom/shadow-root-clonable.html.ini
vendored
Normal file
18
tests/wpt/meta/shadow-dom/shadow-root-clonable.html.ini
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
[shadow-root-clonable.html]
|
||||
[attachShadow with clonable: true]
|
||||
expected: FAIL
|
||||
|
||||
[attachShadow with clonable: false]
|
||||
expected: FAIL
|
||||
|
||||
[attachShadow with clonable: undefined]
|
||||
expected: FAIL
|
||||
|
||||
[declarative shadow roots do *not* get clonable: true automatically]
|
||||
expected: FAIL
|
||||
|
||||
[declarative shadow roots can opt in to clonable with shadowrootclonable]
|
||||
expected: FAIL
|
||||
|
||||
[declarative shadow roots inside templates do *not* get cloned automatically]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/shadow-style-invalidation-vw-units.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/shadow-style-invalidation-vw-units.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[shadow-style-invalidation-vw-units.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-001.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-001.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-001.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-002.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-002.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-002.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-003.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-003.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-003.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-004.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-004.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-004.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-005.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-005.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-005.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-006.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-006.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-006.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-007.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-007.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-007.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slot-fallback-content-008.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slot-fallback-content-008.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slot-fallback-content-008.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/slotchange-customelements.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slotchange-customelements.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slotchange-customelements.html]
|
||||
expected: ERROR
|
2
tests/wpt/meta/shadow-dom/slotchange-event.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slotchange-event.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slotchange-event.html]
|
||||
expected: CRASH
|
49
tests/wpt/meta/shadow-dom/slotchange.html.ini
vendored
Normal file
49
tests/wpt/meta/shadow-dom/slotchange.html.ini
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
[slotchange.html]
|
||||
expected: TIMEOUT
|
||||
[slotchange event: Append a child to a host.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Remove a child from a host.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Remove a child before adding an event listener.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Change slot= attribute to make it un-assigned.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Change slot's name= attribute so that none is assigned.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Change slot= attribute to make it assigned.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Change slot's name= attribute so that a node is assigned to the slot.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Change fallback content - assignedNodes still empty.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Remove a fallback content - assignedNodes still empty.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Add a fallback content to nested slots - assignedNodes still empty.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Remove a fallback content from nested slots - assignedNodes still empty.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Insert a slot before an existing slot.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Remove a preceding slot.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: A slot is assigned to another slot.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Slotchange should be fired if assigned nodes are changed.]
|
||||
expected: TIMEOUT
|
||||
|
||||
[slotchange event: Child content is added to nested slots.]
|
||||
expected: TIMEOUT
|
6
tests/wpt/meta/shadow-dom/slots-fallback-in-document.html.ini
vendored
Normal file
6
tests/wpt/meta/shadow-dom/slots-fallback-in-document.html.ini
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
[slots-fallback-in-document.html]
|
||||
[Children of a slot in a document tree should not be counted in flattened assigned nodes.]
|
||||
expected: FAIL
|
||||
|
||||
[Slot fallback content in shadow tree should be counted in flattened assigned nodes.]
|
||||
expected: FAIL
|
39
tests/wpt/meta/shadow-dom/slots-fallback.html.ini
vendored
Normal file
39
tests/wpt/meta/shadow-dom/slots-fallback.html.ini
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
[slots-fallback.html]
|
||||
[Slots fallback: Basic.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Basic, elements only.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Slots in Slots.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Slots in Slots, elements only.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Fallback contents should not be used if a node is assigned.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Slots in Slots: Assigned nodes should be used as fallback contents of another slot]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Complex case.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Complex case, elements only.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Mutation. Append fallback contents.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Mutation. Remove fallback contents.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Mutation. Assign a node to a slot so that fallback contens are no longer used.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Mutation. Remove an assigned node from a slot so that fallback contens will be used.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots fallback: Mutation. Remove a slot which is a fallback content of another slot.]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/slots-outside-shadow-dom.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/slots-outside-shadow-dom.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[slots-outside-shadow-dom.html]
|
||||
expected: CRASH
|
78
tests/wpt/meta/shadow-dom/slots.html.ini
vendored
Normal file
78
tests/wpt/meta/shadow-dom/slots.html.ini
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
[slots.html]
|
||||
[Slots: Basic.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Basic, elements only.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Slots in closed.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Slots in closed, elements only.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Slots not in a shadow tree.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Slots not in a shadow tree, elements only.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Distributed nodes for Slots not in a shadow tree.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Name matching]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: No direct host child.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Default Slot.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Slot in Slot does not matter in assignment.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Slot is assigned to another slot]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Open > Closed.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Closed > Closed.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Closed > Open.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Complex case: Basi line.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: appendChild.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Change slot= attribute 1.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Change slot= attribute 2.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Change slot= attribute 3.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Remove a child.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Add a slot: after.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Add a slot: before.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Remove a slot.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Change slot name= attribute.]
|
||||
expected: FAIL
|
||||
|
||||
[Slots: Mutation: Change slot slot= attribute.]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[test-006.html]
|
||||
[A_10_02_01_06_T01]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[test-002.html]
|
||||
expected: CRASH
|
|
@ -0,0 +1,3 @@
|
|||
[test-007.html]
|
||||
[A_10_01_01_03_01_T01]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[test-009.html]
|
||||
[A_10_01_01_04_01_T01]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[test-010.html]
|
||||
[A_10_01_01_04_02_T01_02]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[test-004.html]
|
||||
[A_10_01_02_04_T01]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[test-010.html]
|
||||
[A_10_01_02_09_T01]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/untriaged/events/event-dispatch/test-002.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/untriaged/events/event-dispatch/test-002.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[test-002.html]
|
||||
[A_05_05_02_T01]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/untriaged/events/event-dispatch/test-003.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/untriaged/events/event-dispatch/test-003.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[test-003.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/untriaged/events/event-retargeting/test-003.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/untriaged/events/event-retargeting/test-003.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[test-003.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-focus-events/test-001.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-focus-events/test-001.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[test-001.html]
|
||||
expected: CRASH
|
3
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-focus-events/test-002.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-focus-events/test-002.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[test-002.html]
|
||||
[A_05_03_02_T01]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-focus-events/test-003.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-focus-events/test-003.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[test-003.html]
|
||||
[A_05_03_03_T01]
|
||||
expected: FAIL
|
3
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-relatedtarget/test-002.html.ini
vendored
Normal file
3
tests/wpt/meta/shadow-dom/untriaged/events/retargeting-relatedtarget/test-002.html.ini
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[test-002.html]
|
||||
[A_05_02_02_T01]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[test-001.html]
|
||||
[A_08_01_01_T01]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[nested_tree_reftest.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/shadow-dom/untriaged/shadow-trees/reprojection/reprojection-001.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/untriaged/shadow-trees/reprojection/reprojection-001.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[reprojection-001.html]
|
||||
expected: CRASH
|
2
tests/wpt/meta/shadow-dom/untriaged/shadow-trees/shadow-root-001.html.ini
vendored
Normal file
2
tests/wpt/meta/shadow-dom/untriaged/shadow-trees/shadow-root-001.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[shadow-root-001.html]
|
||||
expected: FAIL
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue