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

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_proxy.html

Issue 2717613002: MD Settings: add a bunch of dialog (X) aria-labels (Closed)
Patch Set: . Created 3 years, 10 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/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l"> 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html"> 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html">
4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html"> 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html">
5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
6 <link rel="import" href="chrome://resources/html/md_select_css.html"> 6 <link rel="import" href="chrome://resources/html/md_select_css.html">
7 <link rel="import" href="chrome://resources/html/polymer.html"> 7 <link rel="import" href="chrome://resources/html/polymer.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys/iron-a11 y-keys.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 <paper-button id="saveManualProxy" 195 <paper-button id="saveManualProxy"
196 on-tap="onSaveProxyTap_" class="action-button" 196 on-tap="onSaveProxyTap_" class="action-button"
197 disabled="[[!isSaveManualProxyEnabled_(networkProperties, 197 disabled="[[!isSaveManualProxyEnabled_(networkProperties,
198 proxyModified_, proxy_.*)]]"> 198 proxyModified_, proxy_.*)]]">
199 $i18n{save} 199 $i18n{save}
200 </paper-button> 200 </paper-button>
201 </div> 201 </div>
202 202
203 <!-- Confirm Allow shared proxies dialog --> 203 <!-- Confirm Allow shared proxies dialog -->
204 <dialog is="cr-dialog" id="confirmAllowSharedDialog" 204 <dialog is="cr-dialog" id="confirmAllowSharedDialog"
205 on-cancel="onAllowSharedDialogCancel_"> 205 close-text="$i18n{close}" on-cancel="onAllowSharedDialogCancel_">
206 <div class="title">$i18n{networkProxyAllowSharedWarningTitle}</div> 206 <div class="title">$i18n{networkProxyAllowSharedWarningTitle}</div>
207 <div class="body">$i18n{networkProxyAllowSharedWarningMessage}</div> 207 <div class="body">$i18n{networkProxyAllowSharedWarningMessage}</div>
208 <div class="button-container"> 208 <div class="button-container">
209 <paper-button class="cancel-button" 209 <paper-button class="cancel-button"
210 on-tap="onAllowSharedDialogCancel_"> 210 on-tap="onAllowSharedDialogCancel_">
211 $i18n{cancel} 211 $i18n{cancel}
212 </paper-button> 212 </paper-button>
213 <paper-button class="action-button" 213 <paper-button class="action-button"
214 on-tap="onAllowSharedDialogConfirm_"> 214 on-tap="onAllowSharedDialogConfirm_">
215 $i18n{confirm} 215 $i18n{confirm}
216 </paper-button> 216 </paper-button>
217 </div> 217 </div>
218 </dialog> 218 </dialog>
219 </template> 219 </template>
220 <script src="network_proxy.js"></script> 220 <script src="network_proxy.js"></script>
221 </dom-module> 221 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698