| Index: chrome/browser/resources/options/cookies_list.js
|
| diff --git a/chrome/browser/resources/options/cookies_list.js b/chrome/browser/resources/options/cookies_list.js
|
| index 21f4d00bbfbe83a9ab22710b50b7a33b23f9db38..5cd0f97779929b006f08e638bc32dc532c24c6a0 100644
|
| --- a/chrome/browser/resources/options/cookies_list.js
|
| +++ b/chrome/browser/resources/options/cookies_list.js
|
| @@ -754,7 +754,7 @@ cr.define('options', function() {
|
| */
|
| handleKeyLeftRight_: function(e) {
|
| var id = e.key;
|
| - if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)
|
| + if (hasKeyModifiers(e))
|
| return;
|
| if ((id == 'ArrowLeft' || id == 'ArrowRight') && this.expandedItem) {
|
| var cs = this.ownerDocument.defaultView.getComputedStyle(this);
|
|
|