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.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parse/properties.c b/src/parse/properties.c
index 922ea6c..b8539d3 100644
--- a/src/parse/properties.c
+++ b/src/parse/properties.c
@@ -4436,18 +4436,23 @@ css_error parse_pitch(css_language *c,
flags = FLAG_INHERIT;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[X_LOW]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_X_LOW;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[LOW]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_LOW;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[MEDIUM]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_MEDIUM;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[HIGH]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_HIGH;
} else if (token->type == CSS_TOKEN_IDENT &&
token->ilower == c->strings[X_HIGH]) {
+ parserutils_vector_iterate(vector, ctx);
value = PITCH_X_HIGH;
} else {
error = parse_unit_specifier(c, vector, ctx, UNIT_HZ,