OLD | NEW |
1 CONSOLE WARNING: 'KeyboardEvent.keyIdentifier' is deprecated and will be removed
in M53, around September 2016. See https://www.chromestatus.com/features/531606
5118650368 for more details. | 1 CONSOLE WARNING: line 21: 'KeyboardEvent.keyIdentifier' is deprecated and will b
e removed in M53, around September 2016. See https://www.chromestatus.com/featur
es/5316065118650368 for more details. |
2 This test verifies that the correct sequence of keyboard events is generated for
a keypress for certain special keys. To test manually, press keys and compare r
esults to other browsers. | 2 This test verifies that the correct sequence of keyboard events is generated for
a keypress for certain special keys. To test manually, press keys and compare r
esults to other browsers. |
3 | 3 |
4 | 4 |
5 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char
Code | 5 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char
Code |
6 | 6 |
7 Ampersand: | 7 Ampersand: |
8 INPUT - keydown - false,false,true,false - U+0037 - 55 - 0. Value: "". | 8 INPUT - keydown - false,false,true,false - U+0037 - 55 - 0. Value: "". |
9 INPUT - keypress - false,false,true,false - - 55 - 55. Value: "". | 9 INPUT - keypress - false,false,true,false - - 55 - 55. Value: "". |
10 INPUT - textInput - 7. Value: "". | 10 INPUT - textInput - 7. Value: "". |
11 INPUT - keyup - false,false,true,false - U+0037 - 55 - 0. Value: "7". | 11 INPUT - keyup - false,false,true,false - U+0037 - 55 - 0. Value: "7". |
(...skipping 29 matching lines...) Expand all Loading... |
41 INPUT - keyup - false,false,true,false - U+0030 - 48 - 0. Value: "0". | 41 INPUT - keyup - false,false,true,false - U+0030 - 48 - 0. Value: "0". |
42 | 42 |
43 Backspace: | 43 Backspace: |
44 INPUT - keydown - false,false,false,false - U+0008 - 8 - 0. Value: "0". | 44 INPUT - keydown - false,false,false,false - U+0008 - 8 - 0. Value: "0". |
45 INPUT - keyup - false,false,false,false - U+0008 - 8 - 0. Value: "". | 45 INPUT - keyup - false,false,false,false - U+0008 - 8 - 0. Value: "". |
46 | 46 |
47 Print screen: | 47 Print screen: |
48 INPUT - keydown - false,false,false,false - PrintScreen - 44 - 0. Value: "". | 48 INPUT - keydown - false,false,false,false - PrintScreen - 44 - 0. Value: "". |
49 INPUT - keyup - false,false,false,false - PrintScreen - 44 - 0. Value: "". | 49 INPUT - keyup - false,false,false,false - PrintScreen - 44 - 0. Value: "". |
50 | 50 |
OLD | NEW |