Opened 12 years ago
Closed 12 years ago
#8926 closed defect (invalid)
Using <td> as main organizer in ContentPane produces problems
Reported by: | strife25 | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | Dijit | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
I am using the dijit.layout.tabContainer and contentPane with a table in the contentPane.
When I write my markup like so, everything is fine:
<table>
<tr>
<td>test</td> <td>test</td> <td>test</td>
</tr>
</table>
But when I write my markup like the following, problems occur when I access the page it is created on:
<table>
<td>
<tr>test</tr> <tr>test</tr> <tr>test</tr>
</td>
</table>
In FF3, all the tags are removed and all the is left is my content, as if no <table> tag was even created/.
In IE7, only the first <td> gets removed so my table looks like the following:
<table>
<tr>test</tr>
</td>
</table>
<table><td><tr>hi!</tr></td></table>
is not valid markup, and I would expect IE to complain about it. There is nothing Dojo can do about this.