cfmap inside table based layout
I'm noticing that the table attributtes set within a table are dropped from any data cells after a cfmap tag is placed in the table. In a simple example with cellpadding you will see that it works in the data cells before the cfmap tag but not after. Here is some sample code:
<html>
<body>
<table cellpadding=20 width=800>
<tr>
<td width=200>
This is a test of cellpadding before a cfmap tag is hit in the code...
</td>
<td width=400>
<cfmap centeraddress="15090" height="300" name="aca" width="400" zoomlevel="15" typecontrol="advanced" markerwindowcontent="Adventure Cycling Association Headquarters" zoomcontrol="large3d">
</td>
<td width=200>
This is a test of cellpadding after a cfmap tag is hit in the code...
</td>
</tr>
</table>
</body>
</html>
I know that using tables for layout is not a desired practice, but I'm curious as to why this is happening. I'm not noticing anything in the source that should cause this and it is happening across multiple browsers. Any input would be greatly appreciated.
