summaryrefslogtreecommitdiff
path: root/render/layout.c
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-04-28 02:35:03 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-04-28 02:35:03 +0000
commit240f15b6922491dd0fbc4c7b781fc4bd8389d10a (patch)
tree5c1e7f4e20eb66797381fe6513a85cfbd34dee5a /render/layout.c
parent7525f1dc314afb05fc782ed2f15586858414dbc3 (diff)
downloadnetsurf-240f15b6922491dd0fbc4c7b781fc4bd8389d10a.tar.gz
netsurf-240f15b6922491dd0fbc4c7b781fc4bd8389d10a.tar.bz2
[project @ 2005-04-28 02:35:03 by rjw]
HTML border attributes have lower priority that CSS values (fix osnews). Disable tr height minimum value usage for now. svn path=/import/netsurf/; revision=1694
Diffstat (limited to 'render/layout.c')
-rw-r--r--render/layout.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/layout.c b/render/layout.c
index f70da3a68..3e6c2a367 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -1488,6 +1488,9 @@ bool layout_table(struct box *table, int available_width,
* possible, so treat it as a minimum */
int row_height = (int) css_len2px(&row->style->
height.length, row->style);
+ /* we can't use this value currently as it is always
+ * the height of a line of text in the current style */
+ row_height = 0;
for (c = row->children; c; c = c->next) {
assert(c->style);
c->width = xs[c->start_column + c->columns] -