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

Unified 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 side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698