Opened 8 years ago
Closed 8 years ago
#3973 closed Bug (fixed)
Bulleted List Bug IE8
| Reported by: | wackyphill | Owned by: | garry.yao |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.0 |
| Component: | Core : Lists | Version: | |
| Keywords: | IE Confirmed Review+ | Cc: |
Description
In the nightly build you can cause this error by doing the following:
Type some text on a new line. Then bold and underline the text.
Press ENTER to move to the next line. Then press the bulleted List Item on the toolbar to create a bulleted list.
This causes a javascript error.
Attachments (1)
Change History (5)
comment:1 Changed 8 years ago by garry.yao
- Component changed from General to Core : Lists
- Keywords IE Confirmed added
- Owner set to garry.yao
- Priority changed from High to Normal
- Status changed from new to assigned
Changed 8 years ago by garry.yao
comment:2 Changed 8 years ago by garry.yao
- Keywords Review? added
comment:3 Changed 8 years ago by fredck
- Keywords Review+ added; Review? removed
May be temporary, but it's logic and efficient.
comment:4 Changed 8 years ago by garry.yao
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.

Regression from #3887.
The error is triggered by the following steps:
// Probably the document end is reached, we need a marker node. if ( !lastNode ) { lastNode = document.createText( '' ); lastNode.insertAfter( range.endContainer ); }I'm providing a temporary fix here while a decent solution should be found later.