summaryrefslogtreecommitdiff
path: root/src/select/computed.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-11-06 14:39:37 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-11-07 12:24:40 +0000
commitf536ddb7ad859cc95c96b733a96a83774333d321 (patch)
treec8fac9934500846fc3c440b98cf79173f6ab8e7a /src/select/computed.c
parentad85983173b7cf21c5b46f7fb3798afdb38e9fea (diff)
downloadlibcss-f536ddb7ad859cc95c96b733a96a83774333d321.tar.gz
libcss-f536ddb7ad859cc95c96b733a96a83774333d321.tar.bz2
Add public computed style access function for column-gap property.
Diffstat (limited to 'src/select/computed.c')
-rw-r--r--src/select/computed.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/select/computed.c b/src/select/computed.c
index 25e2d17..105633e 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -798,6 +798,12 @@ uint8_t css_computed_column_fill(const css_computed_style *style)
return get_column_fill(style);
}
+uint8_t css_computed_column_gap(const css_computed_style *style,
+ css_fixed *length, css_unit *unit)
+{
+ return get_column_gap(style, length, unit);
+}
+
uint8_t css_computed_display(const css_computed_style *style,
bool root)
{