Table top/bottom margin is 0px when computed value is 'auto'.

svn path=/trunk/netsurf/; revision=11257
This commit is contained in:
Michael Drake 2011-01-08 17:34:45 +00:00
parent 7cde13feee
commit b85fcf590f

View File

@ -3445,6 +3445,12 @@ bool layout_table(struct box *table, int available_width,
}
}
/* Top and bottom margins of 'auto' are set to 0. CSS2.1 10.6.3 */
if (table->margin[TOP] == AUTO)
table->margin[TOP] = 0;
if (table->margin[BOTTOM] == AUTO)
table->margin[BOTTOM] = 0;
free(col);
free(excess_y);
free(row_span);