Hi, On 12/9/05, fred <dillolist@ubyte.net> wrote:
Hello all. Please forgive me if this has already been discussed at length, I check the last 2months of archives and the bug track and didn't find any mention, but I might've just over-looked it. In dillo 0.8.3 there is no problem when a form begins inside a table but ends outside of it, but when my dillo 0.8.5 sees a the table close, it forces the form closed too and truncates (and consequently discards) the rest of the form. Here is an example (I think this a culprit too [http://lists.auriga.wearlab.de/cgi-bin/mailman/listinfo/dillo-dev])
<HTML> <table><form method="post" action="null">
<input type="text" name="proper"><br> </table> <!-- BREAKS FORMS --> <input type="text" name="cut_off">
</form></HTML>
This looks like improper html. Note that you open the form AFTER starting the table, but close the table BEFORE closing the form. I think your problem is improper nesting here. greets, Wim