summaryrefslogtreecommitdiff
path: root/src/select/properties/list_style_type.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/properties/list_style_type.c')
-rw-r--r--src/select/properties/list_style_type.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/properties/list_style_type.c b/src/select/properties/list_style_type.c
index ce9f0a0..37a2bad 100644
--- a/src/select/properties/list_style_type.c
+++ b/src/select/properties/list_style_type.c
@@ -73,7 +73,7 @@ css_error cascade_list_style_type(uint32_t opv, css_style *style,
if (outranks_existing(getOpcode(opv), isImportant(opv), state,
isInherit(opv))) {
- return set_list_style_type(state->result, value);
+ return set_list_style_type(state->computed, value);
}
return CSS_OK;
@@ -87,7 +87,7 @@ css_error set_list_style_type_from_hint(const css_hint *hint,
css_error initial_list_style_type(css_select_state *state)
{
- return set_list_style_type(state->result, CSS_LIST_STYLE_TYPE_DISC);
+ return set_list_style_type(state->computed, CSS_LIST_STYLE_TYPE_DISC);
}
css_error compose_list_style_type(const css_computed_style *parent,