Opened 14 years ago

Last modified 11 years ago

#7253 closed Bug

Maximize functionality in Firefox fails without doctype tag — at Initial Version

Reported by: Justin King Owned by:
Priority: Normal Milestone:
Component: UI : Skins Version: 3.4.3
Keywords: Cc:

Description

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 (1)

Changed 14 years ago by Justin King

Attachment: 2011-02-28_1415.swf added
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy