diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-nesting/conditional-rules.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-nesting/conditional-rules.html')
-rw-r--r-- | testing/web-platform/tests/css/css-nesting/conditional-rules.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-nesting/conditional-rules.html b/testing/web-platform/tests/css/css-nesting/conditional-rules.html new file mode 100644 index 0000000000..55ecc1f9e4 --- /dev/null +++ b/testing/web-platform/tests/css/css-nesting/conditional-rules.html @@ -0,0 +1,75 @@ +<!DOCTYPE html> +<title>Conditional rules with nesting</title> +<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com"> +<link rel="help" href="https://drafts.csswg.org/css-nesting-1/"> +<link rel="match" href="conditional-rules-ref.html"> +<style> + .test { + background-color: red; + width: 30px; + height: 30px; + display: grid; + } + + .test-5 { + @media (min-width: 10px) { + & { + background-color: green; + } + } + } + + .test-6 { + @media (min-width: 10px) { + background-color: green; + } + } + + .test-10 { + @supports (display: grid) { + & { + background-color: green; + } + } + } + + .test-11 { + @layer { + & { + background-color: green !important; + } + } + } + + .test-12 { + @scope (.test-12) { + :scope { + background-color: green; + } + } + } + + div { + container-type: inline-size; + } + .test-13 { + @container (width >= 0px) { + & { + background-color: green; + } + } + } + + body * + * { + margin-top: 8px; + } +</style> +<body> + <p>Tests pass if <strong>block is green</strong></p> + <div class="test test-5"></div> + <div class="test test-6"></div> + <div class="test test-10"></div> + <div class="test test-11"></div> + <div class="test test-12"></div> + <div class="test"><div class="test-13"></div></div> +</body> |