diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/css/selectors/not-specificity.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/selectors/not-specificity.html')
-rw-r--r-- | testing/web-platform/tests/css/selectors/not-specificity.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/selectors/not-specificity.html b/testing/web-platform/tests/css/selectors/not-specificity.html new file mode 100644 index 0000000000..d9a2a4ddff --- /dev/null +++ b/testing/web-platform/tests/css/selectors/not-specificity.html @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<title>Specificity for complex :not selectors</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<link rel="help" href="https://drafts.csswg.org/selectors/#negation"> +<style> + main :not(#foo) { --t0:PASS; } + main :not(.foo) { --t0:FAIL; } + + main :not(div#foo) { --t1:PASS; } + main :not(#foo) { --t1:FAIL; } + + main :not(.bar, #foo) { --t2:FAIL; } + main :not(#foo, .bar) { --t2:PASS; } + + main :not(.bar, #foo) { --t3:PASS; } + main :not(.foo, .bar) { --t3:FAIL; } + + main :not(span + span) { --t4:PASS; } + main :not(span) { --t4:FAIL; } + + main :not(span, li, #foo) { --t5:PASS; } + main :not(span, li, p) { --t5:FAIL; } + + main :not(span, :not(:not(.a#foo)), p) { --t6:PASS; } + main :not(span, #foo, p) { --t6:FAIL; } + + main :not(span, #foo, p) { --t7:PASS; } + main :not(span, :where(.a#foo), p) { --t7:FAIL; } +</style> +<main id=main> + <div id=div></div> +</main> +<script> + function test_value(name, description) { + test(function() { + let actual = getComputedStyle(div).getPropertyValue(name); + assert_equals(actual, 'PASS'); + }, description); + } + + test_value('--t0', ':not(#foo) wins over :not(.foo)'); + test_value('--t1', ':not(div#foo) wins over :not(#foo)'); + test_value('--t2', ':not(.bar, #foo) has same specificity as :not(#foo, .bar)'); + test_value('--t3', ':not(.bar, #foo) wins over :not(.foo, .bar)'); + test_value('--t4', ':not(span + span) wins over :not(span)'); + test_value('--t5', ':not(span, li, p) wins over :not(span, lo, p)'); + test_value('--t6', ':not(span, :not(:not(.a#foo)), p) wins over :not(span, #foo, p)'); + test_value('--t7', ':not(span, #foo, p) wins over :not(span, :where(.a#foo), p)'); +</script> |