﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12180	IE: Delay in the cursor postion setting after the text is pasted.	Jakub Ś		"Based on #10677.

I have tried similar steps CKEditor 4.x and was able to reproduce this issue from CKE 4.0 (works fine in beta) in IE9-11. I didn't need enter mode BR for that.

MY TC:[[BR]]
1. Open replacebycode.html page and press NEW PAGE
2. Run below script
{{{
window.setInterval(function() {console.log(window.document.getElementById('cke_1_contents').childNodes[1].contentWindow.getSelection().anchorOffset);}, 200);
}}}
3. Type ""This is sample text""
4. Press ""Home""
5. Select with Shift+Arrow word ""This""
6. Press End
7. Press Enter (wait a second)
8. Paste text with Ctrl+V
Result: You will see delay (editor displays 1 and then 4) and in IE10-11 value doesn't get updated (only 1 is logged). You need to move cursor to get offset updated.


I have been able to reproduce this issue from CKEditor 3.2.1 (this is where I could see first delay) in IE9: 
TC is the same but I needed to have text in editor before running script below:
{{{
Ver. 3.2.1
window.setInterval(function() {console.log(window.document.getElementById('cke_contents_editor1').childNodes[0].contentWindow.getSelection().anchorOffset);}, 200);
}}}

Anyway this is TC for CKE 3.x thus I'm marking it as won't fix. I have however reported similar issue for CKEditor 4.x.
"	Bug	closed	Normal		General	4.0	expired	IE	
