summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2006-07-23 18:23:02 +0000
committerJames Bursa <james@netsurf-browser.org>2006-07-23 18:23:02 +0000
commit80b3286e9dcf17698464ac874f7fc0e934d85aa4 (patch)
tree7767aae1964e4f21cc5b8fe150384991ed2950b4 /render
parent985c82a46c68bb7b228d8711cdfd3e9f137b00b3 (diff)
downloadnetsurf-80b3286e9dcf17698464ac874f7fc0e934d85aa4.tar.gz
netsurf-80b3286e9dcf17698464ac874f7fc0e934d85aa4.tar.bz2
Layout absolutely positioned children of tables.
svn path=/trunk/netsurf/; revision=2791
Diffstat (limited to 'render')
-rw-r--r--render/layout.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/layout.c b/render/layout.c
index fa746f916..c640efcd4 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -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;
}