blob: 6731f813109061061cfcc28bae84e79f80584d17 [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
* {
background-color: blue;
color: black;
border: 5px solid black;
}
html, body, p {
background-color: white;
color: black;
}
target {
background-color: green;
}
:matches(#foo, .bar, target.notthere, *, foo>bar) {
background-color: white;
color: blue;
border: none;
}
* {
color: white;
}
</style>
</head>
<body>
<target>Target</target>
</body>
</html>