Ticket #4084: ltr_quirks.html

File ltr_quirks.html, 1.8 KB (added by Tobiasz Cudnik, 15 years ago)

Test page.

Line 
1<html xmlns="http://www.w3.org/1999/xhtml">
2<head>
3        <title>Sample - CKEditor</title>
4        <style type="text/css">
5                body
6                {
7                        background-color: #eeeeee;
8                }
9        </style>
10
11        <script type="text/javascript" src="../../ckeditor_source.js"></script>
12
13        <link type="text/css" rel="stylesheet" href="sample.css" />
14</head>
15<body>
16        <p>
17                <textarea id="editor1" tabindex="1" name="editor1" rows="10" cols="80">
18<table>
19        <tbody>
20                <tr>
21                        <td>
22                                TD</td>
23                </tr>
24        </tbody>
25</table>
26<ul>
27        <li>
28                LI</li>
29        <li>
30                LI</li>
31        <li>
32                LI</li>
33</ul>
34<ol>
35        <li>
36                LI<br />
37                <ol>
38                        <li>
39                                LI</li>
40                </ol>
41        </li>
42        <li>
43                LI</li>
44</ol>
45
46</textarea>
47                <textarea id="editor2" tabindex="1" name="editor1" rows="10" cols="80">
48<table>
49        <tbody>
50                <tr>
51                        <td>
52                                TD</td>
53                </tr>
54        </tbody>
55</table>
56<ul>
57        <li>
58                LI</li>
59        <li>
60                LI</li>
61        <li>
62                LI</li>
63</ul>
64<ol>
65        <li>
66                LI<br />
67                <ol>
68                        <li>
69                                LI</li>
70                </ol>
71        </li>
72        <li>
73                LI</li>
74</ol>
75</textarea>
76                <textarea id="editor3" tabindex="1" name="editor1" rows="10" cols="80">
77<table>
78        <tbody>
79                <tr>
80                        <td>
81                                TD</td>
82                </tr>
83        </tbody>
84</table>
85<ul>
86        <li>
87                LI</li>
88        <li>
89                LI</li>
90        <li>
91                LI</li>
92</ul>
93<ol>
94        <li>
95                LI<br />
96                <ol>
97                        <li>
98                                LI</li>
99                </ol>
100        </li>
101        <li>
102                LI</li>
103</ol>
104</textarea>
105
106                <script type="text/javascript">
107                        //<![CDATA[
108                        CKEDITOR.replace('editor1',
109                                                {
110                                                        skin : 'kama',
111                                                        language : 'en',
112                                                        height : 120
113                                                });
114                        CKEDITOR.replace('editor2',
115                                                {
116                                                        skin : 'office2003',
117                                                        language : 'en',
118                                                        height : 120
119                                                });
120                        CKEDITOR.replace('editor3',
121                                                {
122                                                        skin : 'v2',
123                                                        language : 'en',
124                                                        height : 120
125                                                });
126                        //]]>
127                </script>
128
129        </p>
130</body>
131</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy