| Index: chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| diff --git a/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js b/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| index 7fe468481246c8ffb2e718cce143fa09d1c5f2c9..e82d44c449b2b8bb76aff2d766c87cd037959514 100644
|
| --- a/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| +++ b/chrome/browser/resources/settings/search_engines_page/search_engine_entry.js
|
| @@ -85,9 +85,8 @@ Polymer({
|
|
|
| /** @private */
|
| onDotsTap_: function() {
|
| - /** @type {!CrActionMenuElement} */ (
|
| - this.$$('dialog[is=cr-action-menu]')).showAt(
|
| - assert(this.$$('paper-icon-button')));
|
| + /** @type {!CrActionMenuElement} */ (this.$$('dialog[is=cr-action-menu]'))
|
| + .showAt(assert(this.$$('button[is="paper-icon-button-light"]')));
|
| },
|
|
|
| /**
|
| @@ -106,7 +105,7 @@ Polymer({
|
| // previous dialog's contents are cleared.
|
| dialog.addEventListener('close', function() {
|
| this.showEditSearchEngineDialog_ = false;
|
| - this.$$('paper-icon-button').focus();
|
| + this.$$('button[is="paper-icon-button-light"]').focus();
|
| }.bind(this));
|
| }.bind(this));
|
| },
|
|
|