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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2441043004: Accessibility fixes for quick unlock settings. (Closed)
Patch Set: Use aria-label instead of alt Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
3 <link rel="import" href="chrome://resources/html/icon.html"> 3 <link rel="import" href="chrome://resources/html/icon.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 <div class="settings-box single-column"> 187 <div class="settings-box single-column">
188 <settings-checkbox pref="{{prefs.settings.enable_screen_lock}}" 188 <settings-checkbox pref="{{prefs.settings.enable_screen_lock}}"
189 label="$i18n{enableScreenlock}"> 189 label="$i18n{enableScreenlock}">
190 </settings-checkbox> 190 </settings-checkbox>
191 </div> 191 </div>
192 </template> 192 </template>
193 193
194 <template is="dom-if" if="[[quickUnlockEnabled_]]"> 194 <template is="dom-if" if="[[quickUnlockEnabled_]]">
195 <div class="settings-box two-line" actionable 195 <div class="settings-box two-line" actionable
196 on-tap="onConfigureLockTap_"> 196 on-tap="onConfigureLockTap_">
197 <div class="middle"> 197 <div class="start">
198 <div>$i18n{lockScreenTitle}</div> 198 $i18n{lockScreenTitle}
199 <div class="secondary"> 199 <div class="secondary">
200 [[getPasswordState_(hasPin, 200 [[getPasswordState_(hasPin,
201 prefs.settings.enable_screen_lock.value)]] 201 prefs.settings.enable_screen_lock.value)]]
202 </div> 202 </div>
203 </div> 203 </div>
204 <button class="subpage-arrow" is="paper-icon-button-light"></button>
204 </div> 205 </div>
205 </template> 206 </template>
206 207
207 <template is="dom-if" if="[[easyUnlockAllowed_]]"> 208 <template is="dom-if" if="[[easyUnlockAllowed_]]">
208 <div class="settings-box"> 209 <div class="settings-box">
209 <div class="middle"> 210 <div class="middle">
210 <div>$i18n{easyUnlockSectionTitle}</div> 211 <div>$i18n{easyUnlockSectionTitle}</div>
211 <div class="secondary"> 212 <div class="secondary">
212 <template is="dom-if" if="[[!easyUnlockEnabled_]]"> 213 <template is="dom-if" if="[[!easyUnlockEnabled_]]">
213 $i18n{easyUnlockSetupIntro} 214 $i18n{easyUnlockSetupIntro}
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 347
347 <if expr="chromeos"> 348 <if expr="chromeos">
348 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 349 <template is="dom-if" if="[[easyUnlockEnabled_]]">
349 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 350 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
350 </easy-unlock-turn-off-dialog> 351 </easy-unlock-turn-off-dialog>
351 </template> 352 </template>
352 </if> 353 </if>
353 </template> 354 </template>
354 <script src="people_page.js"></script> 355 <script src="people_page.js"></script>
355 </dom-module> 356 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698