Opened 12 years ago
Closed 11 years ago
#9653 closed Bug (fixed)
Problems with IE10 Quirks mode
Reported by: | Benjamin | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 |
Keywords: | IE10 | Cc: |
Description
CKeditor 3.6.5 is not working in IE10 (Windows 7 and Windows 8) if there are no or wrong doctype declarations.
Internet Explorer 10 returns to Quirks mode if there are errors in the declaration of html doctype. In the IE10 Quirks mode CKEditor is not working.
<html> <head> <script type="text/javascript" src="ckeditor/ckeditor.js"></script> <title>CKEditor</title> </head> <body> <textarea id="story" name="story" class=""></textarea> </body> <script type="text/javascript" type="javascript"> //<![CDATA[ CKEDITOR.replace ('story'); //]]> </script> </html>
Attachments (2)
Change History (5)
Changed 12 years ago by
Attachment: | ckeditor_ie10.png added |
---|
Changed 12 years ago by
Attachment: | test_quirks.html added |
---|
comment:1 Changed 12 years ago by
Keywords: | IE10 added |
---|---|
Status: | new → confirmed |
Version: | 3.6.5 → 3.0 |
comment:2 Changed 12 years ago by
The problem is that IE10 introduced a new kind of default quirks mode, which is totally different than the one in previous versions.
Right now, if you really wants quirks on your pages, the only solution is using a valid quirks (HTML4) doctype or use the "X-UA-Compatible" meta accordingly:
<meta http-equiv="X-UA-Compatible" content="IE=5">
Of course, we recommend going with a modern doctype (HTML5).
comment:3 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | confirmed → closed |
We fixed this in CKEditor 4.3.1 (#11182) or earlier.
CKEditor in IE10 Quirks mode