Ticket #13194: test.html

File test.html, 563 bytes (added by ctrl, 10 years ago)

demo of the issue

Line 
1<!DOCTYPE html>
2<html>
3    <head>
4        <meta charset="utf-8">
5        <title>CKEditor</title>
6        <style>
7            .placeholder:empty:not(:focus):before {
8                content: attr(data-placeholder);
9            }
10        </style>
11        <script src="https://cdn.ckeditor.com/4.4.7/standard/ckeditor.js"></script>
12    </head>
13    <body>
14        <div class="placeholder" contenteditable="true" id="editor1" data-placeholder="This is a placeholder"></div>
15        <script>
16            CKEDITOR.inline('editor1');
17        </script>
18    </body>
19</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy