Ticket #8184 (confirmed Bug)
Inconsistent behavior when inserting <dt><dd> into a definition list with insertHtml
| Reported by: | wwalc | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Lists | Version: | 3.1 |
| Keywords: | Cc: |
Description
- Open _samples/api.html
- Start with the following source and selection
<p>first line</p> <dl> <dt>^definition1</dt> <dd>detail1</dd> </dl>
- Paste into the textarea below CKEditor:
<dt>definition</dt><dd>detail</dd>
- Click "Insert HTML"
- Results:
IE - new definition list is created
Firefox - dt/dd is pasted inside of exisitng definition list, but also an empty definition term is created:<dl> <dt> </dt> <dt> definition</dt> <dd> detail</dd> <dt> ^definition1</dt> <dd> detail1</dd> </dl>
Change History
Note: See
TracTickets for help on using
tickets.

Possibly related to #5309.