- From: John Russell <VE3LL@RAC.CA>
- Date: Tue, 4 Apr 2000 17:45:36 -0400
- To: www-amaya-dev@w3.org
- Message-ID: <38EA2A40.29037.6617B24@localhost>
After worrying about math, and then testing, i find that amaya can cope with image widths adding to more than 100% without problem ... but i have found where my demo file illustrates tables getting messed badly ...... tabdemo.htm is a simple three column two row table with bad math and a very narrow middle column .... with straight text in each column there was no problem with rendering ... Amaya just used its own rather than width setting .... however it all fell to pieces when i chose to put a dl in the center column. offsets required by dt elements are not provided for in the preceding table column settings and text bleeds thru to next column instead of wrapping .... this is a bug for sure. I suspect when the demo file is viewed with lots of pixels say 800x600 there will be little if any problem but on a 640x480 screen there is strong overrun of the data term into the third column clobbering existing text there. john russell VE3LL@RAC.CA homepage: http://web.cgocable.net/~jrussel
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Demo of table with bad math</title> <meta name="GENERATOR" content="amaya V3.0"> <meta http-equiv="Content-Type" content="text/html"> </head> <body> <table border="1"> <caption></caption> <tbody> <tr> <td width="50%">column one</td> <td width="15%">column two</td> <td width="50%">column three</td> </tr> <tr> <td>data area one has a tremendously long area with big words and lots of gibberish</td> <td><dl> <dt>the term</dt> <dd>The terms definition itself.</dd> </dl> </td> <td>data area three has a tremendously long area with big words and lots of gibberish to confuse the issue .....</td> </tr> </tbody> </table> </body> </html>
Received on Wednesday, 5 April 2000 17:46:12 UTC