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

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

Issue 2810003003: MD-Settings: A11y - Label drop down menus. (Closed)
Patch Set: rebase Created 3 years, 8 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.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>

Powered by Google App Engine
This is Rietveld 408576698