Opened 13 years ago

Closed 11 years ago

#8287 closed Bug (invalid)

Internet explorer Frameset issue

Reported by: Keven Owned by:
Priority: Normal Milestone:
Component: General Version: 3.2
Keywords: IE9 Cc:

Description

When using Internet Explorer 9 in a page within a frameset the CKeditor instance's menu bar covers the entire document and the editor area can not be seen. This is the same with FCKEditor 2.x as well which I tried as a back up. Pulled from the frameset the exact sane page works fine.

Page works in frameset under Firefox, Opera, Chrome and Safari.

Attachments (3)

CKeditor_frameset.JPG (159.4 KB) - added by Keven 13 years ago.
Shows the same page in frameset with IE on left and Chrome on right.
frameset.zip (3.0 KB) - added by Jakub Ś 13 years ago.
HowFreamesetShouldLookLike.zip (749 bytes) - added by Jakub Ś 11 years ago.

Download all attachments as: .zip

Change History (8)

Changed 13 years ago by Keven

Attachment: CKeditor_frameset.JPG added

Shows the same page in frameset with IE on left and Chrome on right.

comment:1 Changed 13 years ago by Jakub Ś

Status: newpending

I couldn't reproduce the issue.

Could I ask you to provide a sample test case file that would help reproduce the problem?

comment:2 in reply to:  1 Changed 13 years ago by Keven

Replying to j.swiderski:

I couldn't reproduce the issue.

Could I ask you to provide a sample test case file that would help reproduce the problem?

FRAMESET: http://bcalpine.com/ck/troubleshooting/frames.html

RIGHT FRAME BY ITSELF: http://bcalpine.com/ck/troubleshooting/frame2/

Only IE9 has the issue. I find that using compatibility mode sometimes fixes it, sometimes not.

comment:3 Changed 13 years ago by Jakub Ś

Keywords: IE9 added
Status: pendingconfirmed
Version: 3.6.13.2
  1. Put test case files from attachment into samples folder
  2. Open framset.html sample.

Result: Content area is not visible.
This is because page frame2.html has no doctype thus main page is displayed in "IE9 mode" and frame2 in "quirks mode". From what I have spoken with @wwalc IE9 has problems with let's say working with more than one mode.

A workaround to the problem is to add doctype in frame2.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

or

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

Issue has been reproducible from CKE 3.2

Changed 13 years ago by Jakub Ś

Attachment: frameset.zip added

comment:5 in reply to:  3 Changed 13 years ago by Keven

Replying to j.swiderski:

Perfect solution, thank you!

I just hope someone knows a solution for my other issue http://dev.ckeditor.com/ticket/8288 and then IE users will stop complaining to me! :)

comment:6 Changed 11 years ago by Jakub Ś

Resolution: invalid
Status: confirmedclosed

#9807 was marked as duplicate.

Please note that frames are dead now. If you still want to use them please note that mixing doctypes is not way to go.
After consulting this issue with my colleagues we have decided to close it with couple of guide lines (based on users’ mistakes):

  1. You can't use HTML5 doctype declaration for frameset. Frames are not supported in HTML5. HTML4 frameset declaration is needed here.
  2. Don't forget to use head section in frameset page
  3. Don't forget to put doctype declaration (HTML4 transitional or loose) in frame page because you will get in mixed doctypes and errors.

Please have a look attached zip file - it shows how frames should be used.

Changed 11 years ago by Jakub Ś

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