Ticket #428 (closed Bug: duplicate)
IE problems created unordered list from pasted list
| Reported by: | mkoepke | Owned by: | martinkou |
|---|---|---|---|
| Priority: | Normal | Milestone: | FCKeditor 2.5 Beta |
| Component: | General | Version: | SVN |
| Keywords: | Discussion | Cc: |
Description (last modified by martinkou) (diff)
IE is not working correctly when pasting a list of text.
1. On test site with IE, paste the following list:
* Escape from "Corporate-Cubical Hell" * A Series of Law-Lectures * The Weather * An Overnight Jazz D.J. * A 6-Pack on my Patio
2. Highlight text and hit bulleted list toolbar item.
3. Only a single bullet is created on the line above the Escape... line Source code generated:
<ul>
<li><br />
* Escape from "Corporate-Cubical Hell"<br />
* A Series of Law-Lectures<br />
* The Weather<br />
* An Overnight Jazz D.J.<br />
* A 6-Pack on my Patio</li>
</ul>
Same behavior is pasting with Ctrl+v, Paste toolbar, Paste as Plain Text, or Paste from Word (with Ctrl+v)
FF generates a bulleted list using the steps above. Source code:
<p> </p>
<ul>
<li>* Escape from "Corporate-Cubical Hell"</li>
<li>* A Series of Law-Lectures</li>
<li>* The Weather</li>
<li>* An Overnight Jazz D.J.</li>
<li>* A 6-Pack on my Patio</li>
</ul>
Change History
Note: See
TracTickets for help on using
tickets.