Height attribute value (af|menuBar::empty)
------------------------------------------
Key: TRINIDAD-876
URL: https://issues.apache.org/jira/browse/TRINIDAD-876
Project: MyFaces Trinidad
Issue Type: Bug
Components: Components
Affects Versions: 1.2.4-core
Environment: Trinidad 1.2 branch
Reporter: Jesper Pedersen
Currently the following is rendered when no menubar is defined:
<table class="af_menuBar_empty" width="100%" cellspacing="0" cellpadding="0"
border="0" summary="">
<tbody>
<tr>
<td height="1"/>
</tr>
</tbody>
</table>
The following would be better:
<table class="af_menuBar_empty" width="100%" cellspacing="0" cellpadding="0"
border="0" summary="">
<tbody>
<tr>
<td height="0"/>
</tr>
</tbody>
</table>
with a changed 'height' value (before: 1 after: 0) -- if not removed completely.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.