Opened 13 years ago
Last modified 13 years ago
#8281 confirmed Bug
Internet Explorer 7.x crashes when changing an item from a bulleted list into numbered list
Reported by: | wittmakl | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Lists | Version: | 3.5 |
Keywords: | IE7 | Cc: |
Description
Steps to recreate:
- Make a numbered list
- highlight one or several lines within the numbered list (make sure that the first or last line of the list is not highlighted)
- try to change these lines from nubered list to 'bulleted' list
- Internet Explorer will crash
(works vice versa too)
This issue only occurs until IE7.x it does not occur with other browsers or IE version higer than 8.0 For our company it is vital to use CKEdit with IE7.x as our clinical information system is not validated for IE versions higher than IE7.x
Attachments (1)
Change History (5)
Changed 13 years ago by
Attachment: | CKEdit_List_Bug.zip added |
---|
comment:1 Changed 13 years ago by
Component: | General → Core : Lists |
---|---|
Keywords: | list removed |
Status: | new → confirmed |
Version: | 3.6.1 → 3.5 |
comment:2 Changed 13 years ago by
This is still present in IE7 for CKEditor nightly; switching from OL=>UL and UL=>OL crashes the browser.
Would it be possible to disable the corresponding commands for IE7 when we know we're in a list that'd cause this kind of crash?
comment:3 Changed 13 years ago by
I've applied a naïve patch locally that simply disallows list-changing operation for IE6/7:
// list/plugin.js function changeListType( editor, groupObj, database, listsCreated ) if (CKEDITOR.env.ie6Compat || CKEDITOR.env.ie7Compat) { alert("Sorry, changing list types is unsupported in IE7 and earlier versions."); return; } // ...
Reproducible from CKE 3.5 in IE7 only.
I have tested the issue with vice versa scenario. I have created 5 bulleted items, selected three of them from item2 to item4 and pressed numbered list button.