Ticket #17018: ckeditor.html

File ckeditor.html, 660 bytes (added by Stefan Berger, 7 years ago)

minimal config to reproduce the error when switching to source and back

Line 
1<!DOCTYPE html>
2<html lang="de">
3<head>
4<meta charset="utf-8">
5<title>CKEditor</title>
6</head>
7<body>
8<p><textarea cols="80" id="text" name="text" rows="10"><p>&#228;<br>&#1217;<br>&#128512;<br>&#x1F600;<br>&#x1F680;<br>&#x1F1EA;&#x1F1EC;</p></textarea></p>
9<script src="https://cdn.ckeditor.com/4.6.2/standard/ckeditor.js"></script>
10<script type="text/javascript">
11window.onload = function(){
12        CKEDITOR.replace('text');
13        CKEDITOR.config.entities_latin = false;
14        CKEDITOR.config.entities_processNumerical = true;
15        CKEDITOR.config.docType = '<!DOCTYPE html>';
16        CKEDITOR.config.toolbar = [{ name: 'document', items: [ 'Source' ] }];
17};
18</script>
19</body>
20</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy