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

Side by Side Diff: chrome/browser/resources/md_user_manager/supervised_user_create_confirm.html

Issue 1944463002: MD User Manager: fixes accessibility issues (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-user-pods-css
Patch Set: Addressed comment Created 4 years, 7 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://md-user-manager/profile_browser_proxy.html"> 1 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html">
2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> 2 <link rel="import" href="chrome://md-user-manager/shared_styles.html">
3 <link rel="import" href="chrome://resources/html/parse_html_subset.html"> 3 <link rel="import" href="chrome://resources/html/parse_html_subset.html">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/html/util.html"> 5 <link rel="import" href="chrome://resources/html/util.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
9 9
10 <dom-module id="supervised-user-create-confirm"> 10 <dom-module id="supervised-user-create-confirm">
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 <div id="container"> 69 <div id="container">
70 <div id="title-area" class="horizontal justified layout"> 70 <div id="title-area" class="horizontal justified layout">
71 <span id="title">[[titleText_(profileInfo)]]</span> 71 <span id="title">[[titleText_(profileInfo)]]</span>
72 <iron-icon icon="supervisor-account"></iron-icon> 72 <iron-icon icon="supervisor-account"></iron-icon>
73 </div> 73 </div>
74 <div class="content-area"> 74 <div class="content-area">
75 <div class="content" inner-h-t-m-l="[[htmlMessage1_(profileInfo)]]"> 75 <div class="content" inner-h-t-m-l="[[htmlMessage1_(profileInfo)]]">
76 </div> 76 </div>
77 <div id="childlock-button-example"> 77 <div id="childlock-button-example">
78 <iron-icon icon="lock"></iron-icon> 78 <iron-icon icon="lock"></iron-icon>
79 <span i18n-content="exitAndChildlockLabel"></span> 79 <span>$i18n{exitAndChildlockLabel}</span>
80 </div> 80 </div>
81 <div class="content" inner-h-t-m-l="[[htmlMessage2_(profileInfo)]]"> 81 <div class="content" inner-h-t-m-l="[[htmlMessage2_(profileInfo)]]">
82 </div> 82 </div>
83 </div> 83 </div>
84 <div id="actions"> 84 <div id="actions">
85 <paper-button id="ok" class="action secondary" on-tap="onOkTap_" 85 <paper-button id="ok" class="action secondary" on-tap="onOkTap_">
86 i18n-content="supervisedUserCreatedDone"> 86 $i18n{supervisedUserCreatedDone}
87 </paper-button> 87 </paper-button>
88 <paper-button id="switchUser" class="action primary" 88 <paper-button id="switchUser" class="action primary"
89 on-tap="onSwitchUserTap_"> 89 on-tap="onSwitchUserTap_">
90 [[switchUserText_(profileInfo)]] 90 [[switchUserText_(profileInfo)]]
91 </paper-button> 91 </paper-button>
92 </div> 92 </div>
93 </div> 93 </div>
94 </template> 94 </template>
95 <script src="chrome://md-user-manager/supervised_user_create_confirm.js"></scr ipt> 95 <script src="chrome://md-user-manager/supervised_user_create_confirm.js"></scr ipt>
96 </dom-module> 96 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698