blob: 425600637a56a3396469da94dc896d29127daa09 [file] [edit]
/* test negations */
box {
color: red;
}
label.a:not(:hover) {
color: green;
}
label.b:not(:hover):backdrop {
color: green;
}
box:not(:hover) label.c {
color: green;
}
box:not(:hover):backdrop label.d {
color: green;
}
box:not(:hover):backdrop label.e:not(.f) {
color: green;
}