Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/special-key-events-in-input-text-expected.txt

Issue 1932293002: Deprecate KeyboardEvent.keyIdentifier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust layout tests Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 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.
2 3
3 4
4 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char Code 5 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char Code
5 6
6 Ampersand: 7 Ampersand:
7 INPUT - keydown - false,false,true,false - U+0037 - 55 - 0. Value: "". 8 INPUT - keydown - false,false,true,false - U+0037 - 55 - 0. Value: "".
8 INPUT - keypress - false,false,true,false - - 55 - 55. Value: "". 9 INPUT - keypress - false,false,true,false - - 55 - 55. Value: "".
9 INPUT - textInput - 7. Value: "". 10 INPUT - textInput - 7. Value: "".
10 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
40 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".
41 42
42 Backspace: 43 Backspace:
43 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".
44 INPUT - keyup - false,false,false,false - U+0008 - 8 - 0. Value: "". 45 INPUT - keyup - false,false,false,false - U+0008 - 8 - 0. Value: "".
45 46
46 Print screen: 47 Print screen:
47 INPUT - keydown - false,false,false,false - PrintScreen - 44 - 0. Value: "". 48 INPUT - keydown - false,false,false,false - PrintScreen - 44 - 0. Value: "".
48 INPUT - keyup - false,false,false,false - PrintScreen - 44 - 0. Value: "". 49 INPUT - keyup - false,false,false,false - PrintScreen - 44 - 0. Value: "".
49 50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698