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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html

Issue 2153243002: MD Settings: Replace paper-item with button under passwords_and_forms_page/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing test assertions to ignore spaces. Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
index 0853be37363332f8b926ae355c2ef94d8e7e2cb4..d8c07b745ee9e291fcac9f61b1203ead178d9f7c 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/address_edit_dialog.html
@@ -5,7 +5,6 @@
<link rel="import" href="chrome://resources/polymer/v1_0/paper-dropdown-menu/paper-dropdown-menu.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-textarea.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-listbox/paper-listbox.html">
<link rel="import" href="/settings_shared_css.html">
@@ -58,10 +57,10 @@
<paper-listbox id="countryList" class="dropdown-content"
selected="{{countryCode_}}" attr-for-selected="code">
<template is="dom-repeat" items="[[countries_]]">
- <paper-item code="[[getCode_(item)]]"
- disabled="[[isDivision_(item)]]">
+ <button class="dropdown-item" role="option"
+ code="[[getCode_(item)]]" disabled="[[isDivision_(item)]]">
[[getName_(item)]]
- </paper-item>
+ </button>
</template>
</paper-listbox>
</paper-dropdown-menu>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698