summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-11-16 15:18:59 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-11-16 15:18:59 +0000
commit88d36bd6f7bb38e3f8fe6ff0e15f7876afe7a2d0 (patch)
tree095ca6224ec2faa7ca135aaa705f1d825f473c70 /src
parent34271c0f32bca359af8f7a6c40f166d402b78eb6 (diff)
downloadlibcss-88d36bd6f7bb38e3f8fe6ff0e15f7876afe7a2d0.tar.gz
libcss-88d36bd6f7bb38e3f8fe6ff0e15f7876afe7a2d0.tar.bz2
Add public computed style accessor for column-rule-width prop.
Diffstat (limited to 'src')
-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 81b2359..52167f5 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -815,6 +815,12 @@ uint8_t css_computed_column_rule_style(const css_computed_style *style)
return get_column_rule_style(style);
}
+uint8_t css_computed_column_rule_width(const css_computed_style *style,
+ css_fixed *length, css_unit *unit)
+{
+ return get_column_rule_width(style, length, unit);
+}
+
uint8_t css_computed_display(const css_computed_style *style,
bool root)
{