Layout absolutely positioned children of tables.

svn path=/trunk/netsurf/; revision=2791
This commit is contained in:
James Bursa 2006-07-23 18:23:02 +00:00
parent 985c82a46c
commit 80b3286e9d

View File

@ -2103,6 +2103,9 @@ bool layout_table(struct box *table, int available_width,
table->width = table_width;
table->height = table_height;
if (!layout_absolute_children(table, content))
return false;
return true;
}