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

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

Issue 2723873003: MD WebUI: change all <dom-module> to use id="" instead of name="" (Closed)
Patch Set: Created 3 years, 9 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 id="oobe-a11y-option">
6 <template> 6 <template>
7 <style> 7 <style>
8 :root { 8 :root {
9 --oobe-toggle-button-size: { 9 --oobe-toggle-button-size: {
10 box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4); 10 box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
11 height: 16px; 11 height: 16px;
12 top: -2px; 12 top: -2px;
13 width: 16px; 13 width: 16px;
14 }; 14 };
15 --oobe-toggle-bar-size: { 15 --oobe-toggle-bar-size: {
(...skipping 27 matching lines...) Expand all
43 <div class="display-value" hidden="[[checked]]"> 43 <div class="display-value" hidden="[[checked]]">
44 <content select=".unchecked-value"></content> 44 <content select=".unchecked-value"></content>
45 </div> 45 </div>
46 </div> 46 </div>
47 <paper-toggle-button id="button" checked="{{checked}}" 47 <paper-toggle-button id="button" checked="{{checked}}"
48 aria-label$="[[labelForAria]]"> 48 aria-label$="[[labelForAria]]">
49 </paper-toggle-button> 49 </paper-toggle-button>
50 </div> 50 </div>
51 </template> 51 </template>
52 </dom-module> 52 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698