Non-drawing of nested tables
James C <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <CACZ9Q6jj6d-RxXwud0xb7Mi29qa=wGTZXA9TD_8u4jUjnXfZ6A@mail.gmail.com> |
The attached html draws nested tables with green borders on (old) Safari, Chrome and Firefox on OSX 10.6.8. On the tip of the default branch of dillo, it draws the page title and nothing else. I plan to keep deploying it, in the hope that dillo's behaviour will change toward everything else's. If someone wants to supervise me toward accepting a patch, then I'm willing to explore toward fixing it. Regards, James. _______________________________________________ Dillo-dev mailing list [email protected] http://lists.dillo.org/cgi-bin/mailman/listinfo/dillo-dev
horiztab-03.html
(text/html, 2.2 KB)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<TITLE>Blah blah</TITLE>
<style>
table tr td table { border: 1px solid green; }
</style>
</HEAD>
<body>
<h2 align="center">Blah Blah Blah</h2>
<!-- This table is arranged in vertical blocks.
The link to each month's cashflow is immediately below the month name. --!>
<table width="70%" align="center">
<tr>
<th colspan="6"><p align="center">Blah Blah Blah Blah Blah</p></th>
</tr><tr>
<td> <table align="center"><tr><td><p align="center">JAN</p>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">FEB</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">MAR</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">APR</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">MAY</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">JUN</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
</tr><th><p/>
</tr><tr>
<td> <table align="center"><tr><td><p align="center">JUL</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">AUG</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">SEP</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">OCT</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">NOV</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<td> <table align="center"><tr><td><p align="center">DEC</p></td>
<tr><td>
<a href="../index.htm">99/99/9999</a></td></tr></table> </td>
<tr>
</table>
<p>Words after the table</p>
</body>
</HTML>