1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
3 | <head> |
---|
4 | <title>Test-Case problem CKEditor</title> |
---|
5 | <!-- Meta data --> |
---|
6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
---|
7 | <meta http-equiv="Content-Language" content="NL" /> |
---|
8 | <!-- Javascript --> |
---|
9 | <script type="text/javascript" src="/ckeditor/ckeditor_source.js"></script> |
---|
10 | <style type="text/css"> |
---|
11 | body |
---|
12 | { |
---|
13 | background-color: #000000; |
---|
14 | } |
---|
15 | #content |
---|
16 | { |
---|
17 | background-color: #eeeeee; |
---|
18 | opacity: 0.9; |
---|
19 | } |
---|
20 | </style> |
---|
21 | </head> |
---|
22 | <body> |
---|
23 | <div id="content"> |
---|
24 | Random text above CKEditor.<br /> |
---|
25 | <textarea cols="5" rows="100" name="bericht" id="tekst"> |
---|
26 | Please try maximizing the CKEditor. In Firefox 4.01 the entire container seems to disappear. |
---|
27 | </textarea> |
---|
28 | |
---|
29 | </div> |
---|
30 | <script type="text/javascript"> |
---|
31 | <!-- |
---|
32 | CKEDITOR.replace('tekst', |
---|
33 | { |
---|
34 | extraPlugins: 'autogrow', |
---|
35 | autoGrow_maxHeight: 800 |
---|
36 | }); |
---|
37 | --> |
---|
38 | </script> |
---|
39 | </body> |
---|
40 | </html> |
---|