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

Side by Side Diff: chrome/browser/resources/settings/people_page/setup_fingerprint_dialog.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/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-iconset-svg/iron-i conset-svg.html">
8 <link rel="import" href="../icons.html"> 8 <link rel="import" href="../icons.html">
9 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="fingerprint_browser_proxy.html"> 10 <link rel="import" href="fingerprint_browser_proxy.html">
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 height: 0; 44 height: 0;
45 } 45 }
46 46
47 /* Use this instead of hidden so that the dialog does not resize when the 47 /* Use this instead of hidden so that the dialog does not resize when the
48 problem appears or disappears. */ 48 problem appears or disappears. */
49 #problemDiv[invisible] { 49 #problemDiv[invisible] {
50 visibility: hidden; 50 visibility: hidden;
51 } 51 }
52 </style> 52 </style>
53 53
54 <dialog is="cr-dialog" id="dialog" on-close="close"> 54 <dialog is="cr-dialog" id="dialog" on-close="close"
55 close-text="$i18n{close}">
55 <div class="title">$i18n{configureFingerprintTitle}</div> 56 <div class="title">$i18n{configureFingerprintTitle}</div>
56 <div class="body"> 57 <div class="body">
57 <div class="settings-box first"> 58 <div class="settings-box first">
58 <span class="middle">[[getInstructionMessage_(step_)]]</span> 59 <span class="middle">[[getInstructionMessage_(step_)]]</span>
59 </div> 60 </div>
60 <!-- TODO(sammiequon): on-click and on-dblclik are temporary, remove 61 <!-- TODO(sammiequon): on-click and on-dblclik are temporary, remove
61 once we can interact with the fingerprint hardware --> 62 once we can interact with the fingerprint hardware -->
62 <settings-fingerprint-progress-arc id="arc" on-click="handleClick_" 63 <settings-fingerprint-progress-arc id="arc" on-click="handleClick_"
63 on-dblclick="handleDoubleClick_"> 64 on-dblclick="handleDoubleClick_">
64 </settings-fingerprint-progress-arc> 65 </settings-fingerprint-progress-arc>
(...skipping 17 matching lines...) Expand all
82 class$="[[getCloseButtonClass_(step_)]]" on-tap="onClose_"> 83 class$="[[getCloseButtonClass_(step_)]]" on-tap="onClose_">
83 [[getCloseButtonText_(step_)]] 84 [[getCloseButtonText_(step_)]]
84 </paper-button> 85 </paper-button>
85 </div> 86 </div>
86 </div> 87 </div>
87 </dialog> 88 </dialog>
88 </template> 89 </template>
89 90
90 <script src="setup_fingerprint_dialog.js"></script> 91 <script src="setup_fingerprint_dialog.js"></script>
91 </dom-module> 92 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698