I’m using Eclipse 3.0, MyEclipse 3.8.1 (via the update site), Sun’s JDK 1.4.2_03-b02 and Windows XP Home SP1.
If you use empty element shorthand the HTML tag completion will still try to add an end tag during auto-completion.
To Reproduce Type:
<tr><td><iframe/></
and the auto-complete mechanism will incorrectly finish it like this:
<tr><td><iframe/></iframe>
instead of the correct:
<tr><td><iframe/></td>