Opened 12 years ago
Closed 12 years ago
#10109 closed Bug (invalid)
Image resizing is not disabled in inline editing in IE-8
Reported by: | abua | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 4.0 Beta |
Keywords: | Image handling | Cc: |
Description
Following is the html to enable inline editing in a div and disable editing for an image inside it by setting contenteditable="false". It is working fine in FF but in IE-8 it is resizable. In Chrome it is not resizable but when dragged it inserted copies of the image.
<div id="edtable1" contenteditable="true">
<div>Inline editing. This div should be editable.</div> <div><img alt="" src="http://a.cksource.com/c/1/inc/img/demo-little-red.jpg" contenteditable="false"
style="margin-left: 10px; margin-right: 10px; float: left; width: 120px; height: 168px;" />
<h5>This image should not be resizable.</h5></div> <p>Editable content. This p should be editable.</p> <p>Other editable stuffs.</p>
</div>
This is browser feature.
To disable it please use - http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-disableObjectResizing
If may still get problems due to #9317 in IE9 and IE10.
Since this bug was reported for IE8 I'm closing it as invalid. If it was reported for IE9 or IE10 it would be a duplicate.