summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-05 01:25:00 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-05 01:25:00 +0000
commitd43e656f71ba0c50542ae30d212d8b478203698f (patch)
treeec0e76aec79534b8cf29e7cc91c9e725c90ee2e7
parent72e7e01db7bd56dd3eeef04f6ea25e9f95522966 (diff)
downloadlibcss-d43e656f71ba0c50542ae30d212d8b478203698f.tar.gz
libcss-d43e656f71ba0c50542ae30d212d8b478203698f.tar.bz2
8 more.
svn path=/trunk/libcss/; revision=6704
-rw-r--r--src/select/properties.c88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/select/properties.c b/src/select/properties.c
index a931ce9..60aa77d 100644
--- a/src/select/properties.c
+++ b/src/select/properties.c
@@ -2975,6 +2975,17 @@ css_error initial_page_break_after(css_computed_style *style)
return CSS_OK;
}
+css_error compose_page_break_after(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_page_break_before(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -2989,6 +3000,17 @@ css_error initial_page_break_before(css_computed_style *style)
return CSS_OK;
}
+css_error compose_page_break_before(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_page_break_inside(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3020,6 +3042,17 @@ css_error initial_page_break_inside(css_computed_style *style)
return CSS_OK;
}
+css_error compose_page_break_inside(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_pause_after(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3034,6 +3067,17 @@ css_error initial_pause_after(css_computed_style *style)
return CSS_OK;
}
+css_error compose_pause_after(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_pause_before(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3048,6 +3092,17 @@ css_error initial_pause_before(css_computed_style *style)
return CSS_OK;
}
+css_error compose_pause_before(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_pitch_range(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3062,6 +3117,17 @@ css_error initial_pitch_range(css_computed_style *style)
return CSS_OK;
}
+css_error compose_pitch_range(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_pitch(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3103,6 +3169,17 @@ css_error initial_pitch(css_computed_style *style)
return CSS_OK;
}
+css_error compose_pitch(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_play_during(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3140,6 +3217,17 @@ css_error initial_play_during(css_computed_style *style)
return CSS_OK;
}
+css_error compose_play_during(const css_computed_style *parent,
+ const css_computed_style *child,
+ css_computed_style *result)
+{
+ UNUSED(parent);
+ UNUSED(child);
+ UNUSED(result);
+
+ return CSS_OK;
+}
+
css_error cascade_position(uint32_t opv, css_style *style,
css_select_state *state)
{