summaryrefslogtreecommitdiff
path: root/src/select/computed.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-12-29 18:19:22 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-12-29 19:06:20 +0000
commit30833a1ad59bc1f20a4995b23d2794be17227b51 (patch)
tree696fa80bc1fc9fcb5f20c9f283682e13bf91caf0 /src/select/computed.c
parent8bce7365823f887113c73af46ecdfee6322653f9 (diff)
downloadlibcss-30833a1ad59bc1f20a4995b23d2794be17227b51.tar.gz
libcss-30833a1ad59bc1f20a4995b23d2794be17227b51.tar.bz2
Add break-after property support.
Diffstat (limited to 'src/select/computed.c')
-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 ddaad6e..ff6da17 100644
--- a/src/select/computed.c
+++ b/src/select/computed.c
@@ -787,6 +787,11 @@ uint8_t css_computed_background_position(const css_computed_style *style,
return get_background_position(style, hlength, hunit, vlength, vunit);
}
+uint8_t css_computed_break_after(const css_computed_style *style)
+{
+ return get_break_after(style);
+}
+
uint8_t css_computed_column_count(const css_computed_style *style,
int32_t *column_count)
{