Changes between Initial Version and Version 6 of Ticket #13019


Ignore:
Timestamp:
Mar 27, 2015, 2:38:26 PM (9 years ago)
Author:
Piotrek Koszuliński
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13019

    • Property Status changed from new to closed
    • Property Version changed from 4.4.7 to
    • Property Resolution changed from to invalid
  • Ticket #13019 – Description

    initial v6  
    11Steps to reproduce:
    22
    3 1. open any sample in Chrome, clear it's content
     31. Open any sample in Chrome, clear it's content
    442. 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{{{
     7CKEDITOR.instances.[EDITOR_INSTANCE_ID].document.on('keydown', function(event) {
     8    console.log('KEYDOWN EVENT');
     9});
     10}}}
     11
     123. Type few letters, e.g. abc.
     13  * Result: console will print that keydown event occurred 3 times, e.g. (3)KEYDOWN EVENT
    12144. 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
    16165. press Backspace key
    17  
    18 Actual result:  key down event not detected
     17  * Actual result:  key down event not detected
    1918
    2019Expected result: console will print that keydown event occurred 4 times, e.g. (4)KEYDOWN EVENT
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy