Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: chrome/browser/resources/options/autofill_options_list.js

Issue 664583006: Improve keyboard navigation on 'Manage search engines' options page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/autofill_options_list.js
diff --git a/chrome/browser/resources/options/autofill_options_list.js b/chrome/browser/resources/options/autofill_options_list.js
index 565a62e6d353c7733f663f2c32fdc5792ab4b3e8..297bd2ae0f748bdf9345e18cfa6d78b4a0699390 100644
--- a/chrome/browser/resources/options/autofill_options_list.js
+++ b/chrome/browser/resources/options/autofill_options_list.js
@@ -63,6 +63,8 @@ cr.define('options.autofillOptions', function() {
this.guid,
AutofillOptions.loadAddressEditor);
this.contentElement.appendChild(editButtonEl);
+
+ this.closeButtonFocusable = true;
Dan Beam 2014/10/18 01:35:43 what's the benefit to this very specific accessor
},
};
@@ -108,6 +110,8 @@ cr.define('options.autofillOptions', function() {
this.guid,
AutofillOptions.loadCreditCardEditor);
this.contentElement.appendChild(editButtonEl);
+
+ this.closeButtonFocusable = true;
},
};

Powered by Google App Engine
This is Rietveld 408576698