summaryrefslogtreecommitdiff
path: root/src/select/properties/font_size.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-01-05 00:44:04 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-01-05 00:44:04 +0000
commit4860bd14179e94a7d073714c1c5b21fd9c200dd7 (patch)
treed6343a55826ee6d6ae3801c0453dcce12a0e987e /src/select/properties/font_size.c
parente094fcbc9fcf39fb2d71cd521e8076f4703fa100 (diff)
downloadlibcss-4860bd14179e94a7d073714c1c5b21fd9c200dd7.tar.gz
libcss-4860bd14179e94a7d073714c1c5b21fd9c200dd7.tar.bz2
Simultaneously select styles for base + pseudo elements.
svn path=/trunk/libcss/; revision=11211
Diffstat (limited to 'src/select/properties/font_size.c')
-rw-r--r--src/select/properties/font_size.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/properties/font_size.c b/src/select/properties/font_size.c
index 49c9130..8b52626 100644
--- a/src/select/properties/font_size.c
+++ b/src/select/properties/font_size.c
@@ -66,7 +66,7 @@ css_error cascade_font_size(uint32_t opv, css_style *style,
if (outranks_existing(getOpcode(opv), isImportant(opv), state,
isInherit(opv))) {
- return set_font_size(state->result, value, size, unit);
+ return set_font_size(state->computed, value, size, unit);
}
return CSS_OK;
@@ -81,7 +81,7 @@ css_error set_font_size_from_hint(const css_hint *hint,
css_error initial_font_size(css_select_state *state)
{
- return set_font_size(state->result, CSS_FONT_SIZE_MEDIUM,
+ return set_font_size(state->computed, CSS_FONT_SIZE_MEDIUM,
0, CSS_UNIT_PX);
}