Pedantic wrap.

svn path=/trunk/netsurf/; revision=7589
This commit is contained in:
Michael Drake 2009-05-27 19:17:16 +00:00
parent 7bb2aa7cbb
commit 50219b81e6
1 changed files with 2 additions and 1 deletions

View File

@ -2692,7 +2692,8 @@ bool layout_table(struct box *table, int available_width,
/* This is the minimum height for the table (see 17.5.3) */
min_height = css_len2px(&style->height.value.length, style);
} else if (style->height.height == CSS_HEIGHT_PERCENT) {
/* This is the minimum height for the table (see 17.5.3) */ if (table->style->position == CSS_POSITION_ABSOLUTE) {
/* This is the minimum height for the table (see 17.5.3) */
if (table->style->position == CSS_POSITION_ABSOLUTE) {
/* Table is absolutely positioned */
assert(table->float_container);
containing_block = table->float_container;