| Index: chrome/browser/resources/history/history.js
|
| diff --git a/chrome/browser/resources/history/history.js b/chrome/browser/resources/history/history.js
|
| index 3c22e6d4051867dd6141d05bf3782dfe5257566f..1819bdf717c2afa844c55f343398e287e290cd76 100644
|
| --- a/chrome/browser/resources/history/history.js
|
| +++ b/chrome/browser/resources/history/history.js
|
| @@ -502,7 +502,7 @@ Visit.prototype.showMoreFromSite_ = function() {
|
| */
|
| Visit.prototype.handleKeydown_ = function(e) {
|
| // Delete or Backspace should delete the entry if allowed.
|
| - if (e.keyIdentifier == 'U+0008' || e.keyIdentifier == 'U+007F')
|
| + if (e.key == 'Backspace' || e.key == 'Delete')
|
| this.removeEntryFromHistory_(e);
|
| };
|
|
|
|
|