diff options
Diffstat (limited to 'testing/web-platform/tests/css/selectors/not-links.html')
-rw-r--r-- | testing/web-platform/tests/css/selectors/not-links.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/selectors/not-links.html b/testing/web-platform/tests/css/selectors/not-links.html new file mode 100644 index 0000000000..58cef1a282 --- /dev/null +++ b/testing/web-platform/tests/css/selectors/not-links.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<title>Test that *:not(:link):not(:visited) does not match links</title> +<link rel="match" href="not-links-ref.html"> +<link rel="help" href="https://drafts.csswg.org/selectors-4/#negation"> +<style> + * { + /* Browsers typically ignore the :visited alpha and use the unvisited + alpha instead, which by default is 0, in which case a failure would + not be detected. */ + background-color: white; + } + div *:not(:link):not(:visited) { + background-color: green; + } +</style> +<body> + <div> + <a href="#">Unvisited (<span>Green</span>)</a> + <a href="#">Visited (<span>Green</span>)</a> + <span>Green</span> + </div> + <p> + Only "Green" should have green backgrounds. + </p> +</body> |