diff options
author | Michael Drake <tlsa@netsurf-browser.org> | 2022-08-18 21:19:54 +0100 |
---|---|---|
committer | Michael Drake <mdrake.unique@gmail.com> | 2022-08-29 13:49:20 +0100 |
commit | 9a4646ccb841105404f153cfc5f76cfe3d61b35f (patch) | |
tree | d911d9d26b080abfd3ea253c23b398ca96f81cc9 /src/select/properties/align_content.c | |
parent | 010b9a79ece709d364dbf3930b72d2a7e0bac045 (diff) | |
download | libcss-9a4646ccb841105404f153cfc5f76cfe3d61b35f.tar.gz |
Select: Properties: Add copy handler for simple properties
Diffstat (limited to 'src/select/properties/align_content.c')
-rw-r--r-- | src/select/properties/align_content.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/select/properties/align_content.c b/src/select/properties/align_content.c index 7d791b8..d432879 100644 --- a/src/select/properties/align_content.c +++ b/src/select/properties/align_content.c @@ -66,16 +66,25 @@ css_error css__initial_align_content(css_select_state *state) return set_align_content(state->computed, CSS_ALIGN_CONTENT_STRETCH); } +css_error css__copy_align_content( + const css_computed_style *from, + css_computed_style *to) +{ + if (from == to) { + return CSS_OK; + } + + return set_align_content(to, get_align_content(from)); +} + css_error css__compose_align_content(const css_computed_style *parent, const css_computed_style *child, css_computed_style *result) { uint8_t type = get_align_content(child); - if (type == CSS_ALIGN_CONTENT_INHERIT) { - type = get_align_content(parent); - } - - return set_align_content(result, type); + return css__copy_align_content( + type == CSS_ALIGN_CONTENT_INHERIT ? parent : child, + result); } |