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

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

Issue 2689053002: MD Settings: label and describe a bunch of subpage/open-in-new buttons (Closed)
Patch Set: downloadSize -> downloadsSize Created 3 years, 10 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/passwords_and_forms_page.html
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html
index b71ed1d6a90548fff842b9520b8c746625274549..f6e1e37be1c9e0ae02b9a0af8e9b2fdf369475b0 100644
--- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html
@@ -23,10 +23,14 @@
id="autofillManagerButton"
actionable$="[[prefs.autofill.enabled.value]]">
<div class="flex">
- <div>$i18n{autofill}</div>
- <div class="secondary">$i18n{autofillDetail}</div>
+ $i18n{autofill}
+ <div class="secondary" id="autofillSecondary">
+ $i18n{autofillDetail}
+ </div>
</div>
- <button class="subpage-arrow" is="paper-icon-button-light"></button>
+ <button class="subpage-arrow" is="paper-icon-button-light"
+ aria-label="$i18n{autofill}"
+ aria-describedby="autofillSecondary"></button>
</div>
<div class="secondary-action">
<paper-toggle-button id="autofillToggle"
@@ -39,10 +43,14 @@
id="passwordManagerButton"
actionable$="[[prefs.profile.password_manager_enabled.value]]">
<div class="flex">
- <div>$i18n{passwords}</div>
- <div class="secondary">$i18n{passwordsDetail}</div>
+ $i18n{passwords}
+ <div class="secondary" id="passwordsSecondary">
+ $i18n{passwordsDetail}
+ </div>
</div>
- <button class="subpage-arrow" is="paper-icon-button-light"></button>
+ <button class="subpage-arrow" is="paper-icon-button-light"
+ aria-label="$i18n{passwords}"
+ aria-describedby="passwordsSecondary"></button>
</div>
<div class="secondary-action">
<paper-toggle-button id="passwordToggle"

Powered by Google App Engine
This is Rietveld 408576698