summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/layout.c5
1 files changed, 3 insertions, 2 deletions
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;