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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js

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
Index: chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js
index c92bc9752cbe0c54d1a6fa4b933d9f428f6ccb0b..9275819048ceb0ff614bbad265b52508d8206264 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.js
@@ -28,8 +28,19 @@ Polymer({
title_: String,
/**
+ * The list of months to show in the dropdown.
+ * @private {!Array<string>}
+ */
+ monthList_: {
+ type: Array,
+ value: [
+ '01', '02', '03', '04', '05', '06', '07', '09', '10', '11', '12',
+ ],
+ },
+
+ /**
* The list of years to show in the dropdown.
- * @type {!Array<string>}
+ * @private {!Array<string>}
*/
yearList_: Array,
},

Powered by Google App Engine
This is Rietveld 408576698