diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/meta/html/editing/the-hidden-attribute | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/meta/html/editing/the-hidden-attribute')
3 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/meta/html/editing/the-hidden-attribute/beforematch-element-fragment-navigation.html.ini b/testing/web-platform/meta/html/editing/the-hidden-attribute/beforematch-element-fragment-navigation.html.ini new file mode 100644 index 0000000000..2e8cf2714a --- /dev/null +++ b/testing/web-platform/meta/html/editing/the-hidden-attribute/beforematch-element-fragment-navigation.html.ini @@ -0,0 +1,24 @@ +[beforematch-element-fragment-navigation.html] + [Verifies that fragment navigation reveals hidden=until-found elements.] + expected: FAIL + + [Verifies that fragment navigation reveals all parent hidden=until-found elements.] + expected: FAIL + + [Verifies that the beforematch event is fired synchronously and bubbles after fragment navigation.] + expected: FAIL + + [Verifies that when a beforematch event handler moves a matching element, we scroll to its final location.] + expected: FAIL + + [Verifies that the beforematch event is fired on the right element when there are multiple hidden=until-found elements.] + expected: FAIL + + [Verifies that no scrolling occurs when an element selected by the fragment identifier is detached by the beforematch event handler.] + expected: FAIL + + [No scrolling should occur when the beforematch event handler sets the target element's style to display: none.] + expected: FAIL + + [Scrolling should still occur when beforematch sets visiblity:hidden on the target element.] + expected: FAIL diff --git a/testing/web-platform/meta/html/editing/the-hidden-attribute/hidden-idl.html.ini b/testing/web-platform/meta/html/editing/the-hidden-attribute/hidden-idl.html.ini new file mode 100644 index 0000000000..3e5a92d47b --- /dev/null +++ b/testing/web-platform/meta/html/editing/the-hidden-attribute/hidden-idl.html.ini @@ -0,0 +1,9 @@ +[hidden-idl.html] + [div.hidden = "until-found"] + expected: FAIL + + [div.hidden = "UNTIL-FOUND"] + expected: FAIL + + [div.hidden = "UnTiL-FoUnD"] + expected: FAIL diff --git a/testing/web-platform/meta/html/editing/the-hidden-attribute/hidden-ua-stylesheet.html.ini b/testing/web-platform/meta/html/editing/the-hidden-attribute/hidden-ua-stylesheet.html.ini new file mode 100644 index 0000000000..8f3820f10e --- /dev/null +++ b/testing/web-platform/meta/html/editing/the-hidden-attribute/hidden-ua-stylesheet.html.ini @@ -0,0 +1,10 @@ +[hidden-ua-stylesheet.html] + prefs: [layout.css.content-visibility.enabled:true] + [div.setAttribute('hidden', 'until-found')] + expected: FAIL + + [div.setAttribute('hidden', 'UNTIL-FOUND')] + expected: FAIL + + [div.setAttribute('hidden', 'UnTiL-FoUnD')] + expected: FAIL |