Opened 14 years ago
Last modified 11 years ago
#7253 closed Bug
Maximize functionality in Firefox fails without doctype tag — at Version 1
Reported by: | Justin King | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | UI : Skins | Version: | 3.4.3 |
Keywords: | Cc: |
Description (last modified by )
Attempting to maximize a textarea in Firefox 3.6.13 causes a css rendering issue. In Chrome however this seems to function fine. Tested with the following code:
<html> <head> <link href="ckeditor/_samples/sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.min.js"></script> <script type="text/javascript" src="ckeditor/ckeditor.js"></script> <script type="text/javascript" src="ckeditor/adapters/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('.editor').ckeditor(); }); </script> </head> <body> <h1>CKEditor Demo</h1> <textarea id="editor1" class="editor" name="editor1"><p>Initial value.</p></textarea> </body> </html>
adding this line resolved: <!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Video attached as well.
Change History (2)
Changed 14 years ago by
Attachment: | 2011-02-28_1415.swf added |
---|
comment:1 Changed 14 years ago by
Component: | General → UI : Skins |
---|---|
Description: | modified (diff) |
Status: | new → confirmed |
Version: | 3.5.2 → 3.4.3 |
I confirm that without proper doctype tag, CKEditor is broken after maximizing
I used a "tuned" jquery sample. It looks like before 3.4.3 maximizing worked fine under FF3. Since 3.4.3, above issue happens.