Amaya ignores COL tag

I tested the code below on
  MS Internet explorer 6.0 (MSIE)
  Netscape 7.2 (Netscape)
  Amaya 9.5.1 (Amaya)

Please note the COL tags as per
http://www.htmlhelp.com/reference/html40/tables/col.html

Only MSIE respected both the width and align attributes.
Netscape respected the width but left-aligned the text.
Amaya made minimal-width boxes with left-aligned text.

Comments, anyone?

     - Rich

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>Col test</TITLE>
</HEAD>

<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#660099"
ALINK="#FF0000">
<TABLE BORDER=1>
<col width=100 align=right>
<col width=100 align=right>
<TR><TD>One</TD><TD>2</TD></TR>
<TR><TD>3</TD><TD>4</TD></TR>
</TABLE>
</BODY>
</HTML>

Received on Friday, 25 August 2006 16:17:28 UTC