[w3m-dev 03059] table + hborder + rowspan + valign=bottom

* table.c (renderTable): add case BORDER_NOWIN:
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-02-22 17:55:17 +00:00
parent afbe346d3c
commit 7a5bfd34f9
2 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2002-02-23 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03059] table + hborder + rowspan + valign=bottom
* table.c (renderTable): add case BORDER_NOWIN:
2002-02-20 Fumitoshi UKAI <ukai@debian.or.jp> 2002-02-20 Fumitoshi UKAI <ukai@debian.or.jp>
* [w3m-dev 03057] Re: Bug#134350: w3m: Forgets (http auth) login information upon reload (or almost anything else) * [w3m-dev 03057] Re: Bug#134350: w3m: Forgets (http auth) login information upon reload (or almost anything else)
@@ -2976,4 +2981,4 @@
* release-0-2-1 * release-0-2-1
* import w3m-0.2.1 * import w3m-0.2.1
$Id: ChangeLog,v 1.321 2002/02/19 15:50:17 ukai Exp $ $Id: ChangeLog,v 1.322 2002/02/22 17:55:17 ukai Exp $

View File

@@ -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 * HTML table
*/ */
@@ -1806,6 +1806,7 @@ renderTable(struct table *t, int max_width, struct html_feed_environ *h_env)
switch (t->border_mode) { switch (t->border_mode) {
case BORDER_THIN: case BORDER_THIN:
case BORDER_THICK: case BORDER_THICK:
case BORDER_NOWIN:
h += 1; h += 1;
break; break;
} }