The following bug occurs if you have an image inside a list.
Depending on the whitespace between the li and ul tags, the line is wrapped inconsistently.
(Tested in Chromium 12.0.742.91 (87961) )
No space between tags. Line is wrapped to a second line (<ul><li><img />)
Some whitespace between ul and li tags. No line wrapping (<ul> <li><img />)
- Image tag removed. No line wrapping occurs even for a loooooooong line (<ul><li>)
Another workaround is to add padding to the ul element css.
Bug squished (<ul style="padding-left:3em;"><li><img />)