Opened 16 years ago
Closed 16 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 16 years ago by
| Component: | General → Core : Lists |
|---|---|
| Keywords: | IE Confirmed added |
| Owner: | set to Garry Yao |
| Priority: | High → Normal |
| Status: | new → assigned |
Changed 16 years ago by
| Attachment: | 3973.patch added |
|---|
comment:2 Changed 16 years ago by
| Keywords: | Review? added |
|---|
comment:3 Changed 16 years ago by
| Keywords: | Review+ added; Review? removed |
|---|
May be temporary, but it's logic and efficient.
comment:4 Changed 16 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |

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.