summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-11-06 12:30:59 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-11-07 12:22:49 +0000
commitfa4d9a7560d7cf25affce86a51f6410430a4e63b (patch)
treec26bb9b949266301d85f806dea98e2c7ee7135ab /src
parentd250b1019c669478cf462b64ca060e7aedb5def1 (diff)
downloadlibcss-fa4d9a7560d7cf25affce86a51f6410430a4e63b.tar.gz
libcss-fa4d9a7560d7cf25affce86a51f6410430a4e63b.tar.bz2
Add public accessor for column-fill property value.
Diffstat (limited to 'src')
-rw-r--r--src/select/computed.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/select/computed.c b/src/select/computed.c
index 81c7bc7..25e2d17 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -793,6 +793,11 @@ uint8_t css_computed_column_count(const css_computed_style *style,
return get_column_count(style, column_count);
}
+uint8_t css_computed_column_fill(const css_computed_style *style)
+{
+ return get_column_fill(style);
+}
+
uint8_t css_computed_display(const css_computed_style *style,
bool root)
{