summaryrefslogtreecommitdiff
path: root/src/select/properties
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-12-29 18:21:21 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-12-29 19:06:20 +0000
commit4729e025decd4d92ceeeb40659decf6183594ac6 (patch)
tree0e6499556d4bb8a6d22c4219fcc13d49272b69dd /src/select/properties
parent24207928eb8ba5cc40db4ddd60c60866ec8af684 (diff)
downloadlibcss-4729e025decd4d92ceeeb40659decf6183594ac6.tar.gz
libcss-4729e025decd4d92ceeeb40659decf6183594ac6.tar.bz2
Add break-inside property support.
Diffstat (limited to 'src/select/properties')
-rw-r--r--src/select/properties/break_inside.c40
1 files changed, 10 insertions, 30 deletions
diff --git a/src/select/properties/break_inside.c b/src/select/properties/break_inside.c
index 82cf09c..58931b3 100644
--- a/src/select/properties/break_inside.c
+++ b/src/select/properties/break_inside.c
@@ -17,51 +17,31 @@
css_error css__cascade_break_inside(uint32_t opv, css_style *style,
css_select_state *state)
{
- UNUSED(style);
-
- if (isInherit(opv) == false) {
- switch (getValue(opv)) {
- case BREAK_INSIDE_AUTO:
- case BREAK_INSIDE_AVOID:
- case BREAK_INSIDE_AVOID_PAGE:
- case BREAK_INSIDE_AVOID_COLUMN:
- /** \todo convert to public values */
- break;
- }
- }
-
- if (css__outranks_existing(getOpcode(opv), isImportant(opv), state,
- isInherit(opv))) {
- /** \todo set computed elevation */
- }
-
- return CSS_OK;
+ return css__cascade_break_after_before_inside(opv, style, state,
+ set_break_inside);
}
css_error css__set_break_inside_from_hint(const css_hint *hint,
css_computed_style *style)
{
- UNUSED(hint);
- UNUSED(style);
-
- return CSS_OK;
+ return set_break_inside(style, hint->status);
}
css_error css__initial_break_inside(css_select_state *state)
{
- UNUSED(state);
-
- return CSS_OK;
+ return set_break_inside(state->computed, CSS_BREAK_INSIDE_AUTO);
}
css_error css__compose_break_inside(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)
{
- UNUSED(parent);
- UNUSED(child);
- UNUSED(result);
+ uint8_t type = get_break_inside(child);
+
+ if (type == CSS_BREAK_INSIDE_INHERIT) {
+ type = get_break_inside(parent);
+ }
- return CSS_OK;
+ return set_break_inside(result, type);
}