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/tests/css/selectors/child-indexed-no-parent.html | |
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/tests/css/selectors/child-indexed-no-parent.html')
-rw-r--r-- | testing/web-platform/tests/css/selectors/child-indexed-no-parent.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/selectors/child-indexed-no-parent.html b/testing/web-platform/tests/css/selectors/child-indexed-no-parent.html new file mode 100644 index 0000000000..c77564bf55 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/child-indexed-no-parent.html @@ -0,0 +1,50 @@ +<!doctype html> +<meta charset="utf-8"> +<title>CSS Test: child-indexed selectors should match without a parent element.</title> +<link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecoal95@gmail.com"> +<link rel="help" href="https://drafts.csswg.org/selectors-4/#child-index"> +<link rel="match" href="child-indexed-no-parent-ref.html"> +<style> + :root:first-child #a { + color: green; + } + :root:nth-child(n) #b { + color: green; + } + :root:first-of-type #c { + color: green; + } + :root:nth-of-type(1) #d { + color: green; + } + :root:last-of-type #e { + color: green; + } + :root:last-child #f { + color: green; + } + :root:nth-last-child(1) #g { + color: green; + } + :root:nth-last-of-type(n) #h { + color: green; + } + + #i { + color: green; + } + + /* NB: not matching intentionally */ + :root:nth-last-child(2) #i { + color: red; + } +</style> +<p id="a">Should be green +<p id="b">Should be green +<p id="c">Should be green +<p id="d">Should be green +<p id="e">Should be green +<p id="f">Should be green +<p id="g">Should be green +<p id="h">Should be green +<p id="i">Should be green |