| Index: chrome/browser/resources/settings/on_startup_page/startup_url_entry.html
|
| diff --git a/chrome/browser/resources/settings/on_startup_page/startup_url_entry.html b/chrome/browser/resources/settings/on_startup_page/startup_url_entry.html
|
| index 1a68b89d2e72c36bb607f74c71c1a98d4c66b81d..10136a4aa3506161c9c5349a5df1f867b1b0046a 100644
|
| --- a/chrome/browser/resources/settings/on_startup_page/startup_url_entry.html
|
| +++ b/chrome/browser/resources/settings/on_startup_page/startup_url_entry.html
|
| @@ -5,6 +5,7 @@
|
| <link rel="import" href="chrome://resources/html/icon.html">
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| <link rel="import" href="startup_urls_page_browser_proxy.html">
|
| +<link rel="import" href="../focus_row_behavior.html">
|
| <link rel="import" href="../settings_shared_css.html">
|
|
|
| <dom-module id="settings-startup-url-entry">
|
| @@ -14,7 +15,7 @@
|
| overflow: hidden;
|
| }
|
| </style>
|
| - <div class="list-item">
|
| + <div class="list-item" focus-row-container>
|
| <div class="favicon-image"
|
| style="background-image: [[getIconSet_(model.url)]]">
|
| </div>
|
| @@ -23,9 +24,8 @@
|
| <div class="text-elide secondary">[[model.url]]</div>
|
| </div>
|
| <template is="dom-if" if="[[editable]]">
|
| - <paper-icon-button id="dots" icon="cr:more-vert"
|
| - tabindex$="[[tabindex]]" on-tap="onDotsTap_"
|
| - title="$i18n{moreActions}">
|
| + <paper-icon-button id="dots" icon="cr:more-vert" on-tap="onDotsTap_"
|
| + title="$i18n{moreActions}" focus-row-control focus-type="menu">
|
| </paper-icon-button>
|
| <template is="cr-lazy-render" id="menu">
|
| <dialog is="cr-action-menu">
|
|
|