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

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

Issue 2120153003: Remove keyIdentifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_key_identifier_3a
Patch Set: Rebase Created 4 years, 5 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: line 26: 'KeyboardEvent.keyIdentifier' is deprecated and will b e removed in M54, around October 2016. See https://www.chromestatus.com/features /5316065118650368 for more details.
2 To test manually, press keys and compare results to other browsers. 1 To test manually, press keys and compare results to other browsers.
3 2
4 3
5 target - type - ctrlKey,altKey,shiftKey,metaKey - keyIdentifier - keyCode - char Code 4 target - type - ctrlKey,altKey,shiftKey,metaKey - key - keyCode - charCode
6 Space: 5 Space:
7 INPUT - keydown - false,false,false,false - U+0020 - 32 - 0 6 INPUT - keydown - false,false,false,false - - 32 - 0
8 INPUT - keypress - false,false,false,false - - 32 - 32 7 INPUT - keypress - false,false,false,false - - 32 - 32
9 INPUT - keyup - false,false,false,false - U+0020 - 32 - 0 8 INPUT - keyup - false,false,false,false - - 32 - 0
10 INPUT - click 9 INPUT - click
11 Enter: 10 Enter:
12 INPUT - keydown - false,false,false,false - Enter - 13 - 0 11 INPUT - keydown - false,false,false,false -Enter- 13 - 0
13 INPUT - keypress - false,false,false,false - Enter - 13 - 13 12 INPUT - keypress - false,false,false,false -Enter- 13 - 13
14 INPUT - click 13 INPUT - click
15 INPUT - keyup - false,false,false,false - Enter - 13 - 0 14 INPUT - keyup - false,false,false,false -Enter- 13 - 0
16 A: 15 A:
17 INPUT - keydown - false,false,true,false - U+0041 - 65 - 0 16 INPUT - keydown - false,false,true,false -A- 65 - 0
18 INPUT - keypress - false,false,true,false - - 65 - 65 17 INPUT - keypress - false,false,true,false -A- 65 - 65
19 INPUT - keyup - false,false,true,false - U+0041 - 65 - 0 18 INPUT - keyup - false,false,true,false -A- 65 - 0
20 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698