| Index: chrome/browser/resources/options/inline_editable_list.js
|
| diff --git a/chrome/browser/resources/options/inline_editable_list.js b/chrome/browser/resources/options/inline_editable_list.js
|
| index de5b5b42e8d62b47c59424019bd28fff7912af79..1461fca292fefed6a6ae4b729d459018957307b9 100644
|
| --- a/chrome/browser/resources/options/inline_editable_list.js
|
| +++ b/chrome/browser/resources/options/inline_editable_list.js
|
| @@ -428,7 +428,9 @@ cr.define('options', function() {
|
| this.setAttribute('inlineeditable', '');
|
| this.addEventListener('hasElementFocusChange',
|
| this.handleListFocusChange_);
|
| - this.removeAttribute('tabindex');
|
| + // <list> isn't focusable by default, but cr.ui.List defaults tabindex to
|
| + // 0 if it's not set.
|
| + this.tabIndex = -1;
|
| },
|
|
|
| /**
|
|
|