When using HTML “Clean up document” an extra src = gets added to the <img> tag when the src attribute is capitalized.
Current Version
JDK = 1.5.0_03
MyEclipse = 4.0 Milestone 2
Eclipse = 3.1.0
Options selected
Tag name case for HTML
Upper
Attribute name case for HTML
Lower
Insert required attributes (Checked)
Insert missing tags (Checked)
Quote attribute Values (Checked)
Format source (un-Checked)
Convert Line Deliters to (un-checked)
Sample code block that has problem
<table BORDER=0 CELLPADDING=0 CELLSPACING=0 ><tr>
<TD>
<IMG SRC='someimage.jpeg'></TD>
</tr>
</table>
Converts to
<TABLE border="0" cellpadding="0" cellspacing="0" ><TR>
<TD>
<IMG src='someimage.jpeg' src="" alt=""></TD>
</TR>
</TABLE>