summaryrefslogtreecommitdiff
path: root/render/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/layout.c')
-rw-r--r--render/layout.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/render/layout.c b/render/layout.c
index eb5e8e488..2789a58c2 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -3015,17 +3015,6 @@ void layout_calculate_descendant_bboxes(struct box *box)
box->descendant_y1 = box->padding[TOP] + box->height +
box->padding[BOTTOM] + box->border[BOTTOM];
- if (box->object) {
- LOG(("%i %i %i %i",
- box->descendant_x1, box->object->width,
- box->descendant_y1, box->object->height));
- if (box->descendant_x1 < box->object->width)
- box->descendant_x1 = box->object->width;
- if (box->descendant_y1 < box->object->height)
- box->descendant_y1 = box->object->height;
- return;
- }
-
if (box->type == BOX_INLINE || box->type == BOX_TEXT)
return;