From 2ef37af60c21e6ecb585db22ae1a4ad731753e1d Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 23 Feb 2011 13:11:19 +0000 Subject: When box has no style, handle descendant calc as for overflow: visible. svn path=/trunk/netsurf/; revision=11770 --- render/layout.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'render/layout.c') diff --git a/render/layout.c b/render/layout.c index 15e0a39df..3f2eb87c6 100644 --- a/render/layout.c +++ b/render/layout.c @@ -4526,8 +4526,9 @@ static void layout_update_descendant_bbox(struct box *box, struct box *child, int child_x = child->x - off_x; int child_y = child->y - off_y; - if (child->style && css_computed_overflow(child->style) == - CSS_OVERFLOW_VISIBLE) { + if (child->style == NULL || + (child->style && css_computed_overflow(child->style) == + CSS_OVERFLOW_VISIBLE)) { /* get child's descendant bbox relative to box */ child_desc_x0 = child_x + child->descendant_x0; child_desc_y0 = child_y + child->descendant_y0; -- cgit v1.2.3