mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
ca8540aba2
Oops!
21 lines
319 B
HTML
21 lines
319 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>:not() test</title>
|
|
<style>
|
|
div {
|
|
background: yellow;
|
|
}
|
|
|
|
div:not(div div) {
|
|
background: lime;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>I am not a descendant and should be green.</div>
|
|
<div>
|
|
<div>I am a descendant and should be yellow.</div>
|
|
</div>
|
|
</body>
|
|
</html>
|