BUT I am having problems with Restricting nested HTML tables and need to clarify what I can expect the filter to cope with. I am not sure if this is a "bug" or a "limit".
My query--should the filter be able to cope with any level of nesting in tables? Since nesting is very common in code for HTML tables I was a little surprised that this ...
Code: Select all
<table border="1">
<tr>
<td>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</td>
<td>This cell contains a table:
<table border="1">
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>This cell contains a list
<ul>
<li>apples</li>
<li>bananas</li>
<li>pineapples</li>
</ul>
</td>
<td>HELLO</td>
</tr>
</table>
Code: Select all
[+++RESTRICTION]<table border="1">
[+++RESTRICTION]<tr>
[+++RESTRICTION]<td><p>This is a paragraph</p><p>This is another paragraph</p> </td>
[+++RESTRICTION]<td>This cell contains a table:
[+++RESTRICTION]<table border="1">
[+++RESTRICTION]<tr>
[+++RESTRICTION]<td>A</td>
[+++RESTRICTION]<td>B</td>
[+++RESTRICTION]</tr>
[+++RESTRICTION]<tr>
[+++RESTRICTION]<td>C</td>
[+++RESTRICTION]<td>D</td>
[+++RESTRICTION]</tr>
[+++RESTRICTION]</table>
</td>
</tr>
<tr>
<td>This cell contains a list
<ul>
<li>apples</li>
<li>bananas</li>
<li>pineapples</li>
</ul> </td>
<td>HELLO</td>
</tr>
</table>