summaryrefslogtreecommitdiff
path: root/src/select/properties/orphans.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-04-13 11:43:13 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2012-04-13 11:43:13 +0000
commit89ef7a8acf13143ac0283aa1cfa5ea504b92324b (patch)
tree26564857b03f2c495a05073d3418af7f7a4a5d99 /src/select/properties/orphans.c
parent3f008ebef592b39c93b21dd66dfbe2fd23b6860e (diff)
downloadlibcss-89ef7a8acf13143ac0283aa1cfa5ea504b92324b.tar.gz
libcss-89ef7a8acf13143ac0283aa1cfa5ea504b92324b.tar.bz2
Complete widows and orphans support. Thanks to James Montgomerie.
svn path=/trunk/libcss/; revision=13864
Diffstat (limited to 'src/select/properties/orphans.c')
-rw-r--r--src/select/properties/orphans.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/src/select/properties/orphans.c b/src/select/properties/orphans.c
index 5129c5d..265c6f5 100644
--- a/src/select/properties/orphans.c
+++ b/src/select/properties/orphans.c
@@ -17,34 +17,31 @@
css_error css__cascade_orphans(uint32_t opv, css_style *style,
css_select_state *state)
{
- /** \todo orphans */
- return css__cascade_number(opv, style, state, NULL);
+ return css__cascade_number(opv, style, state, set_orphans);
}
css_error css__set_orphans_from_hint(const css_hint *hint,
css_computed_style *style)
{
- UNUSED(hint);
- UNUSED(style);
-
- return CSS_OK;
+ return set_orphans(style, hint->status, hint->data.fixed);
}
css_error css__initial_orphans(css_select_state *state)
{
- UNUSED(state);
-
- return CSS_OK;
+ return set_orphans(state->computed, CSS_ORPHANS_SET, INTTOFIX(2));
}
css_error css__compose_orphans(const css_computed_style *parent,
const css_computed_style *child,
css_computed_style *result)
{
- UNUSED(parent);
- UNUSED(child);
- UNUSED(result);
-
- return CSS_OK;
+ css_fixed count = 0;
+ uint8_t type = get_orphans(child, &count);
+
+ if (type == CSS_ORPHANS_INHERIT) {
+ type = get_orphans(parent, &count);
+ }
+
+ return set_orphans(result, type, count);
}