Opened 15 years ago
Closed 15 years ago
#5752 closed Bug (duplicate)
Maximize with multiple editors breaks UI in Firefox 3.6
Reported by: | Rhodes | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
I have a very simple case to document a problem I'm having with the CKEditor 3.2.1 and Firefox 3.6, 3.6.1, 3.6.2 and 3.6.3 and the use of the Maximize button.
Here's the scenario:
- I create 2 textareas. Here's the HTML:
<html> <head> <script language="javascript" src="include/ckeditor/ckeditor.js" type="text/javascript"></script> <script type="text/javascript" language="text/javascript">
window.onload=function() {
CKEDITOR.replace('MyTextarea1'); CKEDITOR.replace('MyTextarea2');
}
</script> </head> <body>
<textarea id="MyTextarea1" name="MyTextarea1">This is the initial value of Textarea1.</textarea> <textarea id="MyTextarea2" name="MyTextarea2">This is the initial value of Textarea2.</textarea>
</body> </html>
- In the window.onload event I replace them with the CKEditor. Refer to attachment for the initial display.
- Next I place the cursor, using the mouse, in the second CKEditor's input area.
- And press the "Maximize" button in the the second CKEditor's toolbar.
When the CKEditor is maximized the UI is broken. Refer to the attachment for the results display:
Initial Display