Changes between Initial Version and Version 3 of Ticket #12496
- Timestamp:
- Sep 29, 2014, 7:39:36 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12496
-
Property
Status
changed from
new
toconfirmed
-
Property
Version
changed from
to
4.0 Beta
-
Property
Summary
changed from
HTML5 Fullpage
toCharset in docprops plugin is not recognized
-
Property
Status
changed from
-
Ticket #12496 – Description
initial v3 1 1. Open document properties sample 2 2. Insert below meta tag into page (under title :)). You can also insert doctype but this has no effect on result. 1 3 {{{ 2 4 <meta charset="utf-8" /> 3 5 }}} 4 kills all inputs of the docprops window. Only 6 3. Open document properties dialog and notice that charset it not set in dialog. 7 4. When you set charset to UTF-8 in dialog, below meta tag is inserted: 5 8 {{{ 6 9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 7 10 }}} 8 is possible. 11 This problem can be reproduced from CKEditor 4.0 beta. 12 13 ---- 14 15 In current version the problem gets worse. 16 1. Let's say that you have removed HTML5 charset and decided to use HTML4 charset. 17 2. In current version (latest master) this charset is also not recognized. What is more every time you set utf-8 charset in dialog, new tag gets inserted so you can end up with multiple meta tags inserted into page. 18 19 ---- 20 21 Shouldn't charset meta tag be somehow dependent on doctype or this is something developer/user should know when creating page?