From 8852cdd1099e27cf9bf05212a67b58d197b0ff4b Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Tue, 15 Aug 2006 19:20:36 +0000 Subject: Treat unitless CSS values as pixels (fix 1527056) svn path=/trunk/netsurf/; revision=2851 --- css/ruleset.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'css') diff --git a/css/ruleset.c b/css/ruleset.c index cac548514..0f649d137 100644 --- a/css/ruleset.c +++ b/css/ruleset.c @@ -622,12 +622,17 @@ int parse_length(struct css_length * const length, length->value = 0; return 0; } - if (v->type != CSS_NODE_DIMENSION) + if ((v->type != CSS_NODE_DIMENSION) && (v->type != CSS_NODE_NUMBER)) return 1; num_length = strspn(v->data, "0123456789+-."); - u = css_unit_parse(v->data + num_length, v->data_length - num_length); - if (u == CSS_UNIT_UNKNOWN) - return 1; + if (v->type == CSS_NODE_DIMENSION) + u = css_unit_parse(v->data + num_length, v->data_length - num_length); + if (u == CSS_UNIT_UNKNOWN) { + return 1; + } + } else { + u = CSS_UNIT_PX; + } value = atof(v->data); if (non_negative && value < 0) return 1; -- cgit v1.2.3