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

Unified Diff: chrome/browser/resources/ntp4/page_list_view.js

Issue 2059913002: Remove keyIdentifier usage in chrome/browser/resources/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove a few tests that were failing because webui hasn't changed yet Created 4 years, 6 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: chrome/browser/resources/ntp4/page_list_view.js
diff --git a/chrome/browser/resources/ntp4/page_list_view.js b/chrome/browser/resources/ntp4/page_list_view.js
index 08417cd28b3006cdbca0bb5bfd5a00096b781eac..6ec7d4e79cf05c53578a0bada333819206ab46ab 100644
--- a/chrome/browser/resources/ntp4/page_list_view.js
+++ b/chrome/browser/resources/ntp4/page_list_view.js
@@ -732,9 +732,9 @@ cr.define('ntp', function() {
return;
var direction = 0;
- if (e.keyIdentifier == 'Left')
+ if (e.key == 'ArrowLeft')
direction = -1;
- else if (e.keyIdentifier == 'Right')
+ else if (e.key == 'ArrowRight')
direction = 1;
else
return;

Powered by Google App Engine
This is Rietveld 408576698