mirror of
https://github.com/servo/servo.git
synced 2025-10-15 16:00:28 +01:00
17 lines
479 B
HTML
17 lines
479 B
HTML
<!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>
|
|
body > *:not(:link):not(:visited) {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<a href="#">Unvisited</a>
|
|
<a href="">Visited</a>
|
|
<span>Green</span>
|
|
<p style="background-color: initial">
|
|
Only "Green" should have a green background.
|
|
</p>
|
|
</body>
|