Opened 8 years ago

Closed 8 years ago

#13957 closed Bug (wontfix)

IE unwanted   after link

Reported by: Martin Krieger Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: IE Cc:

Description

Steps to reproduce

  1. Open demo page in Internet Explorer. Clear the content.
  2. Insert a link.
  3. Add a space and some text behind the link.
  4. View source.

Expected result

A link <a>...</a> followed by a space and some text.

Actual result

<a href="http://ckeditor.com">http://ckeditor.com</a>&nbsp;Link

Other details (browser, OS, CKEditor version, installed plugins)

Bug shows only in IE (IE 11 on Win 8.1), Firefox works as expected (other browsers not tested). Same problem e.g. with the placeholder plugin.

Change History (1)

comment:1 Changed 8 years ago by Jakub Ś

Keywords: IE added
Resolution: wontfix
Status: newclosed
Version: 4.5.5

This is IE behaviour. We don't control it and can't really do anything about it

  1. Use below HTML code:
    <div id="test_div" style="margin:20px; border:1px solid black; width:500px;" contenteditable="true">
    	<p><a href="http://test.com">Link_Test</a></p>
    </div>
    
  2. Load the page
  3. Click behind the link and type ' text test'
  4. Open IE11 console and execute this code: document.getElementById('test_div').innerHTML;

Result: <p><a href="http://test.com">Link_Test</a>&nbsp;test test</p>

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