Hi,
When certain html structures are present the editor will insert <p> tags at random spots.
Steps to reproduce
2) go to HTML mode
3) Delete everything and Paste the following html:
| <p><strong><h3>1</h3></strong></p> |
| <p> </p> |
| <p>2</p> |
4) Go back to design mode
5) Go back to HTML mode and note the code
| <p><strong></strong></p> |
| <strong> |
| <h3>1</h3> |
| </strong> |
| <p></p> |
| <p> </p> |
| <p>2</p> |
The problem affects at least Chrome and IE. Chrome will only insert 1 additional tag and then stop. If you repeat steps 4 & 5 in IE it will insert an additional <p> each cycle.