#5964 closed Bug (wontfix)
Resizing images is buggy with IE8 and RTL direction
Reported by: | Ben | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.3.1 |
Keywords: | IE CantFix | Cc: |
Description
When setting the editor to RTL direction, when resizing an image, the small boxes appear, but when I drag them, its all opposite! the cursors are flipped and it all gets messy.
Happens only with IE8! But IE8 + Compatibility mode works fine. (IE7,Firefox etc. works fine also)
Attachments (1)
Change History (9)
Changed 14 years ago by
Attachment: | Untitled.jpg added |
---|
comment:1 Changed 14 years ago by
Keywords: | IE CantFix added; IE8 rtl images resize removed |
---|---|
Milestone: | CKEditor 3.x |
Priority: | High → Normal |
Resolution: | → wontfix |
Status: | new → closed |
The resizing handles are browser specific, and we don't do anything about them.
You should file a bug with Microsoft: https://connect.microsoft.com/IE/Feedback?wa=wsignin1.0
comment:2 Changed 14 years ago by
Keywords: | IE8 rtl images resize added; IE CantFix removed |
---|---|
Resolution: | wontfix |
Status: | closed → reopened |
It's not about the handles.
It's about the image resizing incorrectly.
Please try it before closing.
Other editors work just fine. its a bug in code which is not compatible with IE8.
comment:3 Changed 14 years ago by
Keywords: | Pending added; IE8 rtl images resize removed |
---|
Which other editors are working fine? (with the same kind of setup)
comment:5 Changed 14 years ago by
TinyMCE works great too...
I'm sure i'll find some more if i want to
comment:6 Changed 14 years ago by
Keywords: | IE CantFix added; Pending removed |
---|---|
Resolution: | → wontfix |
Status: | reopened → closed |
The difference is that they are leaving the editing frame in quirks mode. You can do the same using config.docType
This file shows that it's a native IE8 problem, as you can check there's no script at all in the code, but the problem does exist:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Resize handles bug</title> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> </head> <body> <h1>IE 8 standards mode bug</h1> <p>Resize handles for tables and images in a contentEditable element work incorrectly for RTL contents</p> <div contentEditable="true" style="padding:0.4em; border:3px solid #e5e5e5"> <div dir="ltr"> <p>This first paragraph is LTR, and it works fine. <img src="http://profile.ak.fbcdn.net/object2/256/70/s167944609085_5092.jpg" alt="test image"> </p> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr><td> </td><td> </td></tr> <tr><td> </td><td> </td></tr> <tr><td> </td><td> </td></tr> </tbody> </table> </div> <div dir="rtl"> <p>This second paragraph is in RTL and shows the problem. <img src="http://profile.ak.fbcdn.net/object2/256/70/s167944609085_5092.jpg" alt="test image"> </p> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr><td> </td><td> </td></tr> <tr><td> </td><td> </td></tr> <tr><td> </td><td> </td></tr> </tbody> </table> </div> </div> </body> </html>
comment:7 Changed 14 years ago by
comment:8 Changed 14 years ago by
Microsoft has acknowledged the bug but has closed it was won't fix in the IE9 timeframe.
The flipped cursor example