| Index: chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
|
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
|
| index 3c024fb7ea37d5e9f16c480510e8aa63f01a5101..46800552ab7841851960add2375311b636f65724 100644
|
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
|
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/credit_card_edit_dialog.html
|
| @@ -56,7 +56,8 @@
|
| <label>$i18n{creditCardExpiration}</label>
|
| <span class="md-select-wrapper">
|
| <select class="md-select" id="month" value="[[expirationMonth_]]"
|
| - on-change="onMonthChange_">
|
| + on-change="onMonthChange_"
|
| + aria-label="$i18n{creditCardExpirationMonth}">
|
| <template is="dom-repeat" items="[[monthList_]]">
|
| <option>[[item]]</option>
|
| </template>
|
| @@ -65,7 +66,8 @@
|
| </span>
|
| <span class="md-select-wrapper">
|
| <select class="md-select" id="year" value="[[expirationYear_]]"
|
| - on-change="onYearChange_">
|
| + on-change="onYearChange_"
|
| + aria-label="$i18n{creditCardExpirationYear}">
|
| <template is="dom-repeat" items="[[yearList_]]">
|
| <option>[[item]]</option>
|
| </template>
|
|
|