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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/special-key-events-in-input-text.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/special-key-events-in-input-text.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/special-key-events-in-input-text.html b/third_party/WebKit/LayoutTests/fast/events/special-key-events-in-input-text.html
index 399b7c34f51c63631a90cdc8360bfa3789700273..8648831bac8bbba585fbed4a6cbb3bc958aafbd5 100644
--- a/third_party/WebKit/LayoutTests/fast/events/special-key-events-in-input-text.html
+++ b/third_party/WebKit/LayoutTests/fast/events/special-key-events-in-input-text.html
@@ -18,8 +18,8 @@ function logEvent(e) {
info += e.data;
} else if (type == "keydown" || type == "keypress" || type == "keyup") {
info += [e.ctrlKey, e.altKey, e.shiftKey, e.metaKey] +
- ' - ' + e.keyIdentifier +
- ' - ' + e.keyCode +
+ ' -' + e.key +
+ '- ' + e.keyCode +
' - ' + e.charCode;
}
info += '. Value: "' + target.value + '".';
@@ -27,7 +27,7 @@ function logEvent(e) {
}
log("target - type - " + ["ctrlKey", "altKey", "shiftKey", "metaKey"]
- + ' - ' + "keyIdentifier"
+ + ' - ' + "key"
+ ' - ' + "keyCode"
+ ' - ' + "charCode");

Powered by Google App Engine
This is Rietveld 408576698