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 767b5a9530b2d1ae34614d47fd0d80864eb918ad..ddaaa6175781df6844949c113039a940664ff442 100644 |
--- a/chrome/browser/resources/options/cookies_list.js |
+++ b/chrome/browser/resources/options/cookies_list.js |
@@ -734,6 +734,8 @@ cr.define('options', function() { |
*/ |
handleKeyLeftRight_: function(e) { |
var id = e.keyIdentifier; |
+ if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) |
+ return; |
if ((id == 'Left' || id == 'Right') && this.expandedItem) { |
var cs = this.ownerDocument.defaultView.getComputedStyle(this); |
var rtl = cs.direction == 'rtl'; |