I wonder if anyone has tried to do some table code with Internet Explorer and Firefox / Opera using XML/XSLT. If you try to nest <td> tags, Firefox and Opera will parse your XSLT one way, and IE will parse it another, meaning that you can't write XSLT that works with all of the parsers.
If in my XSLT, I do something along the lines of:
<table>
<tr>
<td>
<td>Text</td>
<td>Text</td>
</td>
</tr>
</table>
It won't display properly in IE, since IE's XSL parser won't nest my <td> tags. In Firefox and Opera, the parser will generate HTML output that will essentially show 2 mini <td> tables within the larger <td> table.
Anyone else bumped into this?
If in my XSLT, I do something along the lines of:
<table>
<tr>
<td>
<td>Text</td>
<td>Text</td>
</td>
</tr>
</table>
It won't display properly in IE, since IE's XSL parser won't nest my <td> tags. In Firefox and Opera, the parser will generate HTML output that will essentially show 2 mini <td> tables within the larger <td> table.
Anyone else bumped into this?