| OLD | NEW |
| (Empty) | |
| 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"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 4 |
| 5 <dom-module name="oobe-a11y-option"> |
| 6 <template> |
| 7 <div class="layout horizontal"> |
| 8 <div id="labelContainer" class="flex layout vertical"> |
| 9 <div id="titleContainer"> |
| 10 <content select=".title"></content> |
| 11 </div> |
| 12 <div class="display-value" hidden="[[!checked]]"> |
| 13 <content select=".checked-value"></content> |
| 14 </div> |
| 15 <div class="display-value" hidden="[[checked]]"> |
| 16 <content select=".unchecked-value"></content> |
| 17 </div> |
| 18 </div> |
| 19 <paper-toggle-button checked="{{checked}}"></paper-toggle-button> |
| 20 </div> |
| 21 </template> |
| 22 </dom-module> |
| OLD | NEW |