From 5bd37ecf2cfe1e0c7602b219114b364ec3879d04 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 10 May 2011 11:11:54 +0000 Subject: Elements replaced with HTML don't affect parent descendants. svn path=/trunk/netsurf/; revision=12365 --- render/layout.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'render') diff --git a/render/layout.c b/render/layout.c index a347b1632..3271a955b 100644 --- a/render/layout.c +++ b/render/layout.c @@ -4918,9 +4918,12 @@ 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; + bool html_object = (child->object && + content_get_type(child->object) == CONTENT_HTML); + if (child->style == NULL || (child->style && css_computed_overflow(child->style) == - CSS_OVERFLOW_VISIBLE)) { + CSS_OVERFLOW_VISIBLE && html_object == false)) { /* 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