| Index: chrome/browser/resources/md_history/history_item.js
|
| diff --git a/chrome/browser/resources/md_history/history_item.js b/chrome/browser/resources/md_history/history_item.js
|
| index 0415d721acbeac447d589ca52d0f4f977fd1ce5d..646493be7fa3e7b4700951e706ef964ce4eb3638 100644
|
| --- a/chrome/browser/resources/md_history/history_item.js
|
| +++ b/chrome/browser/resources/md_history/history_item.js
|
| @@ -66,6 +66,10 @@ cr.define('md_history', function() {
|
| * @return {boolean} Whether the event was handled.
|
| */
|
| onKeydown: function(row, e) {
|
| + // Allow Home and End to move the history list.
|
| + if (e.key == 'Home' || e.key == 'End')
|
| + return true;
|
| +
|
| // Prevent iron-list from changing the focus on enter.
|
| if (e.key == 'Enter')
|
| e.stopPropagation();
|
|
|