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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_a11y_option.html

Issue 2681923005: ChromeOS OOBE: Add ARIA-labels for OOBE screens. (Closed)
Patch Set: Update after review 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
4 4
5 <dom-module name="oobe-a11y-option"> 5 <dom-module name="oobe-a11y-option">
6 <template> 6 <template>
7 <link rel="stylesheet" href="oobe_a11y_option.css"> 7 <link rel="stylesheet" href="oobe_a11y_option.css">
8 <div id="elementBox" class="layout horizontal"> 8 <div id="elementBox" class="layout horizontal">
9 <div class="flex layout vertical center-justified"> 9 <div class="flex layout vertical center-justified">
10 <div id="titleContainer"> 10 <div id="titleContainer">
11 <content select=".title"></content> 11 <content select=".title"></content>
12 </div> 12 </div>
13 <div class="display-value" hidden="[[!checked]]"> 13 <div class="display-value" hidden="[[!checked]]">
14 <content select=".checked-value"></content> 14 <content select=".checked-value"></content>
15 </div> 15 </div>
16 <div class="display-value" hidden="[[checked]]"> 16 <div class="display-value" hidden="[[checked]]">
17 <content select=".unchecked-value"></content> 17 <content select=".unchecked-value"></content>
18 </div> 18 </div>
19 </div> 19 </div>
20 <paper-toggle-button checked="{{checked}}"></paper-toggle-button> 20 <paper-toggle-button checked="{{checked}}" aria-label$="[[ariaLabel]]">
21 </paper-toggle-button>
21 </div> 22 </div>
22 </template> 23 </template>
23 </dom-module> 24 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chrome/browser/resources/chromeos/login/oobe_a11y_option.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698