summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/select/hash.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/select/hash.c b/src/select/hash.c
index d68ad82..43a696f 100644
--- a/src/select/hash.c
+++ b/src/select/hash.c
@@ -536,7 +536,8 @@ lwc_string *_class_name(const css_selector *selector)
lwc_string *name = NULL;
do {
- if (detail->type == CSS_SELECTOR_CLASS) {
+ /* Ignore :not(.class) */
+ if (detail->type == CSS_SELECTOR_CLASS && detail->negate == 0) {
name = detail->name;
break;
}
@@ -562,7 +563,8 @@ lwc_string *_id_name(const css_selector *selector)
lwc_string *name = NULL;
do {
- if (detail->type == CSS_SELECTOR_ID) {
+ /* Ignore :not(#id) */
+ if (detail->type == CSS_SELECTOR_ID && detail->negate == 0) {
name = detail->name;
break;
}