summaryrefslogtreecommitdiff
path: root/src/parse/properties/padding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties/padding.c')
-rw-r--r--src/parse/properties/padding.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/parse/properties/padding.c b/src/parse/properties/padding.c
index 3a77c26..8562d20 100644
--- a/src/parse/properties/padding.c
+++ b/src/parse/properties/padding.c
@@ -51,8 +51,7 @@ css_error parse_padding(css_language *c,
/* Firstly, handle inherit */
token = parserutils_vector_peek(vector, *ctx);
if (token != NULL && token->type == CSS_TOKEN_IDENT &&
- (lwc_context_string_caseless_isequal(
- c->sheet->dictionary,
+ (lwc_string_caseless_isequal(
token->idata, c->strings[INHERIT],
&match) == lwc_error_ok && match)) {
uint32_t *bytecode;
@@ -94,8 +93,7 @@ css_error parse_padding(css_language *c,
/* Ensure that we're not about to parse another inherit */
token = parserutils_vector_peek(vector, *ctx);
if (token != NULL && token->type == CSS_TOKEN_IDENT &&
- (lwc_context_string_caseless_isequal(
- c->sheet->dictionary,
+ (lwc_string_caseless_isequal(
token->idata, c->strings[INHERIT],
&match) == lwc_error_ok && match)) {
error = CSS_INVALID;
@@ -392,8 +390,7 @@ css_error parse_padding_side(css_language *c,
}
if (token->type == CSS_TOKEN_IDENT &&
- (lwc_context_string_caseless_isequal(
- c->sheet->dictionary,
+ (lwc_string_caseless_isequal(
token->idata, c->strings[INHERIT],
&match) == lwc_error_ok && match)) {
parserutils_vector_iterate(vector, ctx);