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

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

Issue 2223213003: ChromeOS: Implement Accessibility Options screen of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
(Empty)
1 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
michaelpg 2016/08/09 20:33:08 no HTML copyright headers
Alexander Alekseev 2016/08/10 04:03:45 Done.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. -->
4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
michaelpg 2016/08/09 20:33:08 import chrome://resources/html/polymer.html
Alexander Alekseev 2016/08/10 04:03:45 Done.
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html">
7
8 <dom-module name="oobe-a11y-option">
9 <template>
10 <div class="layout horizontal">
11 <div id="labelContainer" class="flex layout vertical">
12 <div id="titleContainer">
13 <content select=".title"></content>
14 </div>
15 <div class="display-value" hidden="[[!checked]]">
16 <content select=".checked-value"></content>
17 </div>
18 <div class="display-value" hidden="[[checked]]">
19 <content select=".unchecked-value"></content>
20 </div>
21 </div>
22 <paper-toggle-button checked="{{checked}}"></paper-toggle-button>
23 </div>
24 </template>
25 </dom-module>
26
michaelpg 2016/08/09 20:33:08 nit: remove trailing blank line
Alexander Alekseev 2016/08/10 04:03:45 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698