I am experiencing an issue when pasting paragraphs into the rich test editor. To reproduce, select a couple paragraphs of text and using firefox paste them into the Normal tab of the cuteeditor then look at the HTML tab. Do the same for the IE. Firefox addes <div> tags around the paragraphs but IE does not. I would like to see the same behavior across browsers. I was able to reproduce using the demo editor.
The following is an example of the two difference browser behaviors:
In IE:
This<br />
Is<br />
An<br />
Example
In Firefox:
<div>
<div>This<br />
Is<br />
An<br />
Example</div>
</div>