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

Side by Side Diff: chrome/browser/resources/settings/a11y_page/manage_a11y_page.html

Issue 2825493003: MD Settings: change outlinks to actually use <a> (Closed)
Patch Set: merge Created 3 years, 8 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/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="../controls/settings_slider.html"> 5 <link rel="import" href="../controls/settings_slider.html">
6 <link rel="import" href="../controls/settings_toggle_button.html"> 6 <link rel="import" href="../controls/settings_toggle_button.html">
7 <link rel="import" href="../i18n_setup.html"> 7 <link rel="import" href="../i18n_setup.html">
8 <link rel="import" href="../route.html"> 8 <link rel="import" href="../route.html">
9 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="../settings_vars_css.html"> 10 <link rel="import" href="../settings_vars_css.html">
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 198
199 <h2>$i18n{audioHeading}</h2> 199 <h2>$i18n{audioHeading}</h2>
200 <div class="settings-box block first"> 200 <div class="settings-box block first">
201 <settings-toggle-button 201 <settings-toggle-button
202 pref="{{prefs.settings.a11y.mono_audio}}" 202 pref="{{prefs.settings.a11y.mono_audio}}"
203 label="$i18n{monoAudioLabel}"> 203 label="$i18n{monoAudioLabel}">
204 </settings-toggle-button> 204 </settings-toggle-button>
205 </div> 205 </div>
206 206
207 <template is="dom-if" if="[[!isGuest_]]"> 207 <template is="dom-if" if="[[!isGuest_]]">
208 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable> 208 <a class="settings-box two-line inherit-color no-outline" tabindex="-1"
209 target="_blank"
210 href="https://chrome.google.com/webstore/category/collection/accessibi lity">
209 <div class="start"> 211 <div class="start">
210 $i18n{additionalFeaturesTitle} 212 $i18n{additionalFeaturesTitle}
211 <div class="secondary" id="moreFeaturesSecondary"> 213 <div class="secondary" id="moreFeaturesSecondary">
212 $i18n{a11yWebStore} 214 $i18n{a11yWebStore}
213 </div> 215 </div>
214 </div> 216 </div>
215 <button class="icon-external" is="paper-icon-button-light" 217 <button class="icon-external" is="paper-icon-button-light" actionable
216 aria-label="$i18n{additionalFeaturesTitle}" 218 aria-label="$i18n{additionalFeaturesTitle}"
217 aria-describedby="moreFeaturesSecondary"></button> 219 aria-describedby="moreFeaturesSecondary"></button>
218 </div> 220 </a>
219 </template> 221 </template>
220 </template> 222 </template>
221 <script src="manage_a11y_page.js"></script> 223 <script src="manage_a11y_page.js"></script>
222 </dom-module> 224 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698