| OLD | NEW |
| 1 Test that arrow keys do not dispatch keypress events even if there is no default
handler. | 1 Test that arrow keys do not dispatch keypress events even if there is no default
handler. |
| 2 | 2 |
| 3 To test manually, press arrow keys and verify that no keypress events are logged
. | 3 To test manually, press arrow keys and verify that no keypress events are logged
. |
| 4 | 4 |
| 5 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyLocation -
keyCode - charCode | 5 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - location - key
Code - charCode |
| 6 BODY - keydown - false,false,false,false - Left - DOM_KEY_LOCATION_STANDARD - 37
- 0 | 6 BODY - keydown - false,false,false,false - Left - DOM_KEY_LOCATION_STANDARD - 37
- 0 |
| 7 BODY - keyup - false,false,false,false - Left - DOM_KEY_LOCATION_STANDARD - 37 -
0 | 7 BODY - keyup - false,false,false,false - Left - DOM_KEY_LOCATION_STANDARD - 37 -
0 |
| 8 | 8 |
| OLD | NEW |