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

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

Issue 2688153004: ChromeOS OOBE: fix focus flow in MD-OOBE. (Closed)
Patch Set: label => labelForAria 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}}" aria-label$="[[ariaLabel]]"> 20 <paper-toggle-button id="button" checked="{{checked}}"
21 aria-label$="[[labelForAria]]">
21 </paper-toggle-button> 22 </paper-toggle-button>
22 </div> 23 </div>
23 </template> 24 </template>
24 </dom-module> 25 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698