diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-22 17:55:17 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-02-22 17:55:17 +0000 |
commit | 7a5bfd34f9b10494d844f1fba4c4ad942a784c6d (patch) | |
tree | e72bb1a44922569912323ba6a81ee0b8eac2980f /table.c | |
parent | [w3m-dev 03057] Re: Bug#134350: w3m: Forgets (http auth) login information up... (diff) | |
download | w3m-7a5bfd34f9b10494d844f1fba4c4ad942a784c6d.tar.gz w3m-7a5bfd34f9b10494d844f1fba4c4ad942a784c6d.zip |
[w3m-dev 03059] table + hborder + rowspan + valign=bottom
* table.c (renderTable): add case BORDER_NOWIN:
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | table.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: table.c,v 1.20 2002/02/05 12:31:27 ukai Exp $ */ +/* $Id: table.c,v 1.21 2002/02/22 17:55:17 ukai Exp $ */ /* * HTML table */ @@ -1806,6 +1806,7 @@ renderTable(struct table *t, int max_width, struct html_feed_environ *h_env) switch (t->border_mode) { case BORDER_THIN: case BORDER_THICK: + case BORDER_NOWIN: h += 1; break; } |