summaryrefslogtreecommitdiff
path: root/src/parse/properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties.c')
-rw-r--r--src/parse/properties.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index 31ba6f9..4670934 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -1680,6 +1680,8 @@ css_error parse_counter_increment(css_language *c,
first = false;
token = parserutils_vector_iterate(vector, &temp_ctx);
+ if (token != NULL && token->type != CSS_TOKEN_IDENT)
+ return CSS_INVALID;
}
/* And for the terminator */
@@ -1760,6 +1762,8 @@ css_error parse_counter_increment(css_language *c,
first = false;
token = parserutils_vector_iterate(vector, ctx);
+ if (token != NULL && token->type != CSS_TOKEN_IDENT)
+ return CSS_INVALID;
}
/* And for the terminator */