summaryrefslogtreecommitdiff
path: root/src/select/properties/pause_before.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/pause_before.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/pause_before.c')
-rw-r--r--src/select/properties/pause_before.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/select/properties/pause_before.c b/src/select/properties/pause_before.c
index 7770615..74cb565 100644
--- a/src/select/properties/pause_before.c
+++ b/src/select/properties/pause_before.c
@@ -37,6 +37,16 @@ css_error css__initial_pause_before(css_select_state *state)
return CSS_OK;
}
+css_error css__copy_pause_before(
+ const css_computed_style *from,
+ css_computed_style *to)
+{
+ UNUSED(from);
+ UNUSED(to);
+
+ return CSS_OK;
+}
+
css_error css__compose_pause_before(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)