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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/arrow-keys-on-body.html

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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/events/arrow-keys-on-body.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/arrow-keys-on-body.html b/third_party/WebKit/LayoutTests/fast/events/arrow-keys-on-body.html
index 615bded0b3668f3561a9e1c5ee347b0bb0a51ff0..f199508514f5ef51c67062efba20b37d94fb5dc8 100644
--- a/third_party/WebKit/LayoutTests/fast/events/arrow-keys-on-body.html
+++ b/third_party/WebKit/LayoutTests/fast/events/arrow-keys-on-body.html
@@ -40,7 +40,7 @@ function eventInfo(event, where) {
+ (target.tagName == "INPUT" ? " " + target.type : "")
+ " - " + event.type
+ ' - ' + [event.ctrlKey, event.altKey, event.shiftKey, event.metaKey]
- + ' - ' + event.keyIdentifier
+ + ' - ' + event.key
+ ' - ' + (event.location === undefined ? "undefined" : locationName(event.location))
+ ' - ' + event.keyCode
+ ' - ' + event.charCode;
@@ -50,7 +50,7 @@ function eventInfo(event, where) {
}
}
log("target - type - " + ["ctrlKey", "altKey", "shiftKey", "metaKey"]
- + ' - ' + "keyIdentifier"
+ + ' - ' + "key"
+ ' - ' + "location"
+ ' - ' + "keyCode"
+ ' - ' + "charCode");

Powered by Google App Engine
This is Rietveld 408576698