OLD | NEW |
1 To test manually, press keys and compare results to other browsers. | 1 To test manually, press keys and compare results to other browsers. |
2 | 2 |
3 | 3 |
4 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char
Code | 4 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char
Code |
5 Space: | 5 Space: |
6 INPUT - keydown - false,false,false,false - U+0020 - 32 - 0 | 6 INPUT - keydown - false,false,false,false - U+0020 - 32 - 0 |
7 INPUT - keypress - false,false,false,false - - 32 - 32 | 7 INPUT - keypress - false,false,false,false - - 32 - 32 |
8 INPUT - keyup - false,false,false,false - U+0020 - 32 - 0 | 8 INPUT - keyup - false,false,false,false - U+0020 - 32 - 0 |
9 INPUT - click | 9 INPUT - click |
10 Enter: | 10 Enter: |
11 INPUT - keydown - false,false,false,false - Enter - 13 - 0 | 11 INPUT - keydown - false,false,false,false - Enter - 13 - 0 |
12 INPUT - keypress - false,false,false,false - - 13 - 13 | 12 INPUT - keypress - false,false,false,false - Enter - 13 - 13 |
13 INPUT - click | 13 INPUT - click |
14 INPUT - keyup - false,false,false,false - Enter - 13 - 0 | 14 INPUT - keyup - false,false,false,false - Enter - 13 - 0 |
15 A: | 15 A: |
16 INPUT - keydown - false,false,true,false - U+0041 - 65 - 0 | 16 INPUT - keydown - false,false,true,false - U+0041 - 65 - 0 |
17 INPUT - keypress - false,false,true,false - - 65 - 65 | 17 INPUT - keypress - false,false,true,false - - 65 - 65 |
18 INPUT - keyup - false,false,true,false - U+0041 - 65 - 0 | 18 INPUT - keyup - false,false,true,false - U+0041 - 65 - 0 |
19 | 19 |
OLD | NEW |