Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/oobe_a11n_option.html |
| diff --git a/chrome/browser/resources/chromeos/login/oobe_a11n_option.html b/chrome/browser/resources/chromeos/login/oobe_a11n_option.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5c12421cb56e92aafc22e4a558dae7254a15158d |
| --- /dev/null |
| +++ b/chrome/browser/resources/chromeos/login/oobe_a11n_option.html |
| @@ -0,0 +1,26 @@ |
| +<!-- 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.
|
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/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.
|
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/paper-toggle-button.html"> |
| + |
| +<dom-module name="oobe-a11y-option"> |
| + <template> |
| + <div class="layout horizontal"> |
| + <div id="labelContainer" class="flex layout vertical"> |
| + <div id="titleContainer"> |
| + <content select=".title"></content> |
| + </div> |
| + <div class="display-value" hidden="[[!checked]]"> |
| + <content select=".checked-value"></content> |
| + </div> |
| + <div class="display-value" hidden="[[checked]]"> |
| + <content select=".unchecked-value"></content> |
| + </div> |
| + </div> |
| + <paper-toggle-button checked="{{checked}}"></paper-toggle-button> |
| + </div> |
| + </template> |
| +</dom-module> |
| + |
|
michaelpg
2016/08/09 20:33:08
nit: remove trailing blank line
Alexander Alekseev
2016/08/10 04:03:45
Done.
|