In IE11 on Windows 7/8 / 8.1, if the onkeyup event in the maniuplates text box is a property value, the copy is duplicated.
value
Example:
<input value="abc" onkeyup="this.value = this.value;" />
In IE11, click in the text box and type a character (or delete it). Then click Ctrl+Zto cancel it. Regardless of the content left in the field, the cancel operation will be duplicated.
Ctrl+Z
Edit: Sent to Internet Explorer Reviews on MS Connect
while IE11 fixes this error, you can solve this problem as follows:
<input onkeyup="var evtobj = window.event? event : e;if (evtobj.keyCode !== 90 && evtobj.ctrlKey) this.value =this.value;">