Opened 10 years ago
Last modified 10 years ago
#13019 closed Bug
Chrome: Unbale to get 'keydown' event — at Initial Version
Reported by: | Irina | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | IBM | Cc: | Satya Minnekanti |
Description
Steps to reproduce:
- open any sample in Chrome, clear it's content
- Run following in the console:
CKEDITOR.instances.[EDITOR_INSTANCE_ID].document.on('keydown', function(event) {
console.log('KEYDOWN EVENT');
});
- Type few letters, e.g. abc
Result: console will print that keydown event occurred 3 times, e.g. (3)KEYDOWN EVENT
- Press enter key
Result: key down event not detected and this is expected behaviour for this key
- press Backspace key
Actual result: key down event not detected
Expected result: console will print that keydown event occurred 4 times, e.g. (4)KEYDOWN EVENT