summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-05 01:32:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-05 01:32:34 +0000
commit7ae834363486f942edf13ff2758aacb9263cb457 (patch)
tree6b87b081db4bc83e20eede048664ae34f1c9d518 /src
parent4e76c3f860c327ce980704619857e438fb734030 (diff)
downloadlibcss-7ae834363486f942edf13ff2758aacb9263cb457.tar.gz
libcss-7ae834363486f942edf13ff2758aacb9263cb457.tar.bz2
7 more.
svn path=/trunk/libcss/; revision=6706
Diffstat (limited to 'src')
-rw-r--r--src/select/properties.c77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/select/properties.c b/src/select/properties.c
index b3d5208..f6b5e19 100644
--- a/src/select/properties.c
+++ b/src/select/properties.c
@@ -3402,6 +3402,17 @@ css_error initial_richness(css_computed_style *style)
return CSS_OK;
}
+css_error compose_richness(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_right(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3461,6 +3472,17 @@ css_error initial_speak_header(css_computed_style *style)
return CSS_OK;
}
+css_error compose_speak_header(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_speak_numeral(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3492,6 +3514,17 @@ css_error initial_speak_numeral(css_computed_style *style)
return CSS_OK;
}
+css_error compose_speak_numeral(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_speak_punctuation(
uint32_t opv, css_style *style, css_select_state *state)
{
@@ -3523,6 +3556,17 @@ css_error initial_speak_punctuation(css_computed_style *style)
return CSS_OK;
}
+css_error compose_speak_punctuation(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_speak(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3555,6 +3599,17 @@ css_error initial_speak(css_computed_style *style)
return CSS_OK;
}
+css_error compose_speak(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_speech_rate(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3595,6 +3650,17 @@ css_error initial_speech_rate(css_computed_style *style)
return CSS_OK;
}
+css_error compose_speech_rate(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_stress(uint32_t opv, css_style *style,
css_select_state *state)
{
@@ -3609,6 +3675,17 @@ css_error initial_stress(css_computed_style *style)
return CSS_OK;
}
+css_error compose_stress(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_table_layout(uint32_t opv, css_style *style,
css_select_state *state)
{