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

Unified Diff: chrome/browser/resources/settings/on_startup_page/startup_url_entry.html

Issue 2749513004: MD Settings: adjust iron-list focus row behaviors. (Closed)
Patch Set: fix test Created 3 years, 9 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/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">

Powered by Google App Engine
This is Rietveld 408576698