summaryrefslogtreecommitdiff
path: root/src/select/properties/float.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-08-18 21:19:54 +0100
committerMichael Drake <mdrake.unique@gmail.com>2022-08-29 13:49:20 +0100
commit9a4646ccb841105404f153cfc5f76cfe3d61b35f (patch)
treed911d9d26b080abfd3ea253c23b398ca96f81cc9 /src/select/properties/float.c
parent010b9a79ece709d364dbf3930b72d2a7e0bac045 (diff)
downloadlibcss-9a4646ccb841105404f153cfc5f76cfe3d61b35f.tar.gz
libcss-9a4646ccb841105404f153cfc5f76cfe3d61b35f.tar.bz2
Select: Properties: Add copy handler for simple properties
Diffstat (limited to 'src/select/properties/float.c')
-rw-r--r--src/select/properties/float.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/select/properties/float.c b/src/select/properties/float.c
index 87732f6..6d009bb 100644
--- a/src/select/properties/float.c
+++ b/src/select/properties/float.c
@@ -54,16 +54,25 @@ css_error css__initial_float(css_select_state *state)
return set_float(state->computed, CSS_FLOAT_NONE);
}
+css_error css__copy_float(
+ const css_computed_style *from,
+ css_computed_style *to)
+{
+ if (from == to) {
+ return CSS_OK;
+ }
+
+ return set_float(to, get_float(from));
+}
+
css_error css__compose_float(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)
{
uint8_t type = get_float(child);
- if (type == CSS_FLOAT_INHERIT) {
- type = get_float(parent);
- }
-
- return set_float(result, type);
+ return css__copy_float(
+ type == CSS_FLOAT_INHERIT ? parent : child,
+ result);
}