Index: ui/webui/resources/js/cr/ui/focus_row.js |
diff --git a/ui/webui/resources/js/cr/ui/focus_row.js b/ui/webui/resources/js/cr/ui/focus_row.js |
index a50e62a55b1d62d0097f5974e556bc94309ccc60..68832d897bf78b86412aa2114a325d2759e91aa1 100644 |
--- a/ui/webui/resources/js/cr/ui/focus_row.js |
+++ b/ui/webui/resources/js/cr/ui/focus_row.js |
@@ -178,6 +178,9 @@ cr.define('cr.ui', function() { |
if (this.delegate && this.delegate.onKeydown(this, e)) |
return; |
+ if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) |
+ return; |
+ |
var index = -1; |
if (e.keyIdentifier == 'Left') |