Ticket #9205: 9205.html

File 9205.html, 1.2 KB (added by Piotrek Koszuliński, 10 years ago)

TCs for #9205, #7805 and #8216.

Line 
1<!DOCTYPE html>
2<!--
3Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.md or http://ckeditor.com/license
5-->
6<html>
7<head>
8        <meta charset="utf-8">
9        <title>#9205, #8216, #7805</title>
10        <script src="../ckeditor.js"></script>
11        <link href="sample.css" rel="stylesheet">
12</head>
13<body>
14        <h1 class="samples">#9205, #8216, #7805</h1>
15        <form action="sample_posteddata.php" method="post">
16                <h1>#9250</h1>
17                <textarea cols="80" id="editor1" name="editor1" rows="10">
18                        <p>A'B<!-- Comment -->C'D</p>
19                </textarea>
20
21                <h1>#8216</h1>
22                <textarea cols="80" id="editor2" name="editor2" rows="10">
23                        <p>
24                                <script>/*'*/</script><!-- comment --><script>/*'*/</script>
25                        </p>
26                </textarea>
27
28                <h1>#7805</h1>
29                <textarea cols="80" id="editor3" name="editor3" rows="10">
30                        <p><span foo="1
31                        ">A<!-- comment -->B"</span></p>
32
33                        <p><span a="1
34                        1" b="2">A<!-- comment -->B"</span></p>
35                </textarea>
36
37                <script>
38                        CKEDITOR.replace( 'editor1', {
39                                height: 100,
40                                allowedContent: true
41                        } );
42                        CKEDITOR.replace( 'editor2', {
43                                height: 100,
44                                allowedContent: true
45                        } );
46                        CKEDITOR.replace( 'editor3', {
47                                height: 100,
48                                allowedContent: true,
49                                removePlugins: 'pastefromword'
50                        } );
51                </script>
52        </form>
53</body>
54</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy