Changes between Initial Version and Version 6 of Ticket #13019
- Timestamp:
- Mar 27, 2015, 2:38:26 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13019
-
Property
Status
changed from
new
toclosed
-
Property
Version
changed from
4.4.7
to -
Property
Resolution
changed from
to
invalid
-
Property
Status
changed from
-
Ticket #13019 – Description
initial v6 1 1 Steps to reproduce: 2 2 3 1. open any sample in Chrome, clear it's content3 1. Open any sample in Chrome, clear it's content 4 4 2. Run following in the console: 5 CKEDITOR.instances.[EDITOR_INSTANCE_ID].document.on('keydown', function(event) { 6 console.log('KEYDOWN EVENT'); 7 }); 8 3. Type few letters, e.g. abc 9 10 Result: console will print that keydown event occurred 3 times, e.g. (3)KEYDOWN EVENT 11 5 6 {{{ 7 CKEDITOR.instances.[EDITOR_INSTANCE_ID].document.on('keydown', function(event) { 8 console.log('KEYDOWN EVENT'); 9 }); 10 }}} 11 12 3. Type few letters, e.g. abc. 13 * Result: console will print that keydown event occurred 3 times, e.g. (3)KEYDOWN EVENT 12 14 4. Press enter key 13 14 Result: key down event not detected and this is expected behaviour for this key 15 15 * Result: key down event not detected and this is expected behaviour for this key 16 16 5. press Backspace key 17 18 Actual result: key down event not detected 17 * Actual result: key down event not detected 19 18 20 19 Expected result: console will print that keydown event occurred 4 times, e.g. (4)KEYDOWN EVENT