From a90a5cba08fdf6c0ceb95101c275108a152a3aed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:35:37 +0200 Subject: Merging upstream version 127.0. Signed-off-by: Daniel Baumann --- .../moveBefore/tentative/Node-moveBefore.html.ini | 102 +++++++++++++++++++++ .../tentative/continue-css-animation-left.html.ini | 3 + .../continue-css-animation-transform.html.ini | 3 + .../continue-css-transition-left-pseudo.html.ini | 3 + .../continue-css-transition-left.html.ini | 3 + ...ntinue-css-transition-transform-pseudo.html.ini | 3 + .../continue-css-transition-transform.html.ini | 3 + .../tentative/css-animation-commit-styles.html.ini | 3 + .../css-transition-cross-document.html.ini | 16 ++++ .../tentative/css-transition-cross-shadow.html.ini | 3 + ...ss-transition-to-disconnected-document.html.ini | 3 + .../tentative/css-transition-trigger.html.ini | 3 + .../moveBefore/tentative/focus-preserve.html.ini | 12 +++ .../tentative/fullscreen-preserve.html.ini | 3 + 14 files changed, 163 insertions(+) create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/Node-moveBefore.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-left.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-transform.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left-pseudo.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform-pseudo.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-animation-commit-styles.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-document.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-shadow.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-to-disconnected-document.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-trigger.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/focus-preserve.html.ini create mode 100644 testing/web-platform/meta/dom/nodes/moveBefore/tentative/fullscreen-preserve.html.ini (limited to 'testing/web-platform/meta/dom/nodes/moveBefore/tentative') diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/Node-moveBefore.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/Node-moveBefore.html.ini new file mode 100644 index 0000000000..2a4bd6c32f --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/Node-moveBefore.html.ini @@ -0,0 +1,102 @@ +[Node-moveBefore.html] + [Should check the 'parent' type before checking whether 'child' is a child of 'parent'] + expected: FAIL + + [Should check that 'node' is not an ancestor of 'parent' before checking whether 'child' is a child of 'parent'] + expected: FAIL + + [Should check whether 'child' is a child of 'parent' before checking whether 'node' is of a type that can have a parent.] + expected: FAIL + + [Should check whether 'child' is a child of 'parent' before checking whether 'node' is of a type that can have a parent of the type that 'parent' is.] + expected: FAIL + + [Should check whether 'child' is a child of 'parent' before checking whether 'node' can be inserted into the document given the kids the document has right now.] + expected: FAIL + + [If node is a host-including inclusive ancestor of parent, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is not a DocumentFragment, DocumentType, Element, Text, ProcessingInstruction, or Comment node, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is a Text node and parent is a document, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is a doctype and parent is not a document, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is a DocumentFragment with multiple elements and parent is a document, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is a DocumentFragment with an element and parent is a document with another element, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is an Element and parent is a document with another element, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is a doctype and parent is a document with another doctype, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [If node is a doctype and parent is a document with an element, then throw a HierarchyRequestError DOMException.] + expected: FAIL + + [Calling moveBefore an a leaf node DocumentType must throw HIERARCHY_REQUEST_ERR.] + expected: FAIL + + [Calling moveBefore an a leaf node Text must throw HIERARCHY_REQUEST_ERR.] + expected: FAIL + + [Calling moveBefore an a leaf node Comment must throw HIERARCHY_REQUEST_ERR.] + expected: FAIL + + [Calling moveBefore an a leaf node ProcessingInstruction must throw HIERARCHY_REQUEST_ERR.] + expected: FAIL + + [Calling moveBefore with an inclusive ancestor of the context object must throw HIERARCHY_REQUEST_ERR.] + expected: FAIL + + [Calling moveBefore with a reference child whose parent is not the context node must throw a NotFoundError.] + expected: FAIL + + [If the context node is a document, inserting a document or text node should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting a DocumentFragment that contains a text node or too many elements should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting a DocumentFragment with an element if there already is an element child should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document and a doctype is following the reference child, inserting a DocumentFragment with an element should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting a DocumentFragment with an element before the doctype should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting an element if there already is an element child should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting an element before the doctype should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document and a doctype is following the reference child, inserting an element should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting a doctype if there already is a doctype child should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document, inserting a doctype after the document element should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a document with and element child, appending a doctype should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is a DocumentFragment, inserting a document or a doctype should throw a HierarchyRequestError.] + expected: FAIL + + [If the context node is an element, inserting a document or a doctype should throw a HierarchyRequestError.] + expected: FAIL + + [Inserting a node before itself should not move the node] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-left.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-left.html.ini new file mode 100644 index 0000000000..f109b605d2 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-left.html.ini @@ -0,0 +1,3 @@ +[continue-css-animation-left.html] + [Node.moveBefore should preserve CSS animation state (left)] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-transform.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-transform.html.ini new file mode 100644 index 0000000000..05654dd2a4 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-animation-transform.html.ini @@ -0,0 +1,3 @@ +[continue-css-animation-transform.html] + [Node.moveBefore should preserve CSS animation state (transform)] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left-pseudo.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left-pseudo.html.ini new file mode 100644 index 0000000000..2d225501ec --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left-pseudo.html.ini @@ -0,0 +1,3 @@ +[continue-css-transition-left-pseudo.html] + [Node.moveBefore should preserve CSS transition state on pseudo-elements (left)] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left.html.ini new file mode 100644 index 0000000000..60f17eb404 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-left.html.ini @@ -0,0 +1,3 @@ +[continue-css-transition-left.html] + [Node.moveBefore should preserve CSS transition state (left)] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform-pseudo.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform-pseudo.html.ini new file mode 100644 index 0000000000..866de2a12b --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform-pseudo.html.ini @@ -0,0 +1,3 @@ +[continue-css-transition-transform-pseudo.html] + [Node.moveBefore should preserve CSS transition state on pseudo-elements (transform)] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform.html.ini new file mode 100644 index 0000000000..895b331eff --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/continue-css-transition-transform.html.ini @@ -0,0 +1,3 @@ +[continue-css-transition-transform.html] + [Node.moveBefore should preserve CSS transition state (transform)] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-animation-commit-styles.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-animation-commit-styles.html.ini new file mode 100644 index 0000000000..e38f3a2648 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-animation-commit-styles.html.ini @@ -0,0 +1,3 @@ +[css-animation-commit-styles.html] + [Calling commitStyles after Node.moveBefore should commit mid-transition value] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-document.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-document.html.ini new file mode 100644 index 0000000000..11bd069d36 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-document.html.ini @@ -0,0 +1,16 @@ +[css-transition-cross-document.html] + expected: + if (os == "linux") and debug and fission: [OK, TIMEOUT] + if (os == "linux") and debug and not fission: [OK, TIMEOUT] + if (os == "win") and not debug: TIMEOUT + if (os == "linux") and not debug: TIMEOUT + if os == "android": OK + [TIMEOUT, OK] + [Moving a transition across documents should reset its state] + expected: + if (os == "linux") and debug and fission: [FAIL, TIMEOUT] + if (os == "linux") and debug and not fission: [FAIL, TIMEOUT] + if (os == "win") and not debug: TIMEOUT + if (os == "linux") and not debug: TIMEOUT + if os == "android": FAIL + [TIMEOUT, FAIL] diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-shadow.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-shadow.html.ini new file mode 100644 index 0000000000..a19b4f2e5d --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-cross-shadow.html.ini @@ -0,0 +1,3 @@ +[css-transition-cross-shadow.html] + [Moving an element with a transition across shadow boundaries should reset the transition] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-to-disconnected-document.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-to-disconnected-document.html.ini new file mode 100644 index 0000000000..dd6192bc1b --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-to-disconnected-document.html.ini @@ -0,0 +1,3 @@ +[css-transition-to-disconnected-document.html] + [Moving an element with a transition to a disconnected document should reset the transitionm state] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-trigger.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-trigger.html.ini new file mode 100644 index 0000000000..272163fb32 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/css-transition-trigger.html.ini @@ -0,0 +1,3 @@ +[css-transition-trigger.html] + [Node.moveBefore should trigger CSS transition state (left) if needed] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/focus-preserve.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/focus-preserve.html.ini new file mode 100644 index 0000000000..f51e042347 --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/focus-preserve.html.ini @@ -0,0 +1,12 @@ +[focus-preserve.html] + [when reparenting an element, don't automatically reset the document focus] + expected: FAIL + + [when reparenting a focused element into an inert parent, reset the document focus] + expected: FAIL + + [when reparenting a focused element into a hidden parent, reset the document focus] + expected: FAIL + + [when reparenting an ancestor of an focused element into a hidden parent, reset the document focus] + expected: FAIL diff --git a/testing/web-platform/meta/dom/nodes/moveBefore/tentative/fullscreen-preserve.html.ini b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/fullscreen-preserve.html.ini new file mode 100644 index 0000000000..19a5e7273f --- /dev/null +++ b/testing/web-platform/meta/dom/nodes/moveBefore/tentative/fullscreen-preserve.html.ini @@ -0,0 +1,3 @@ +[fullscreen-preserve.html] + [Document#fullscreenElement] + expected: FAIL -- cgit v1.2.3