| OLD | NEW |
| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 200 |
| 201 <h2>$i18n{audioHeading}</h2> | 201 <h2>$i18n{audioHeading}</h2> |
| 202 <div class="settings-box block first"> | 202 <div class="settings-box block first"> |
| 203 <settings-toggle-button | 203 <settings-toggle-button |
| 204 pref="{{prefs.settings.a11y.mono_audio}}" | 204 pref="{{prefs.settings.a11y.mono_audio}}" |
| 205 label="$i18n{monoAudioLabel}"> | 205 label="$i18n{monoAudioLabel}"> |
| 206 </settings-toggle-button> | 206 </settings-toggle-button> |
| 207 </div> | 207 </div> |
| 208 | 208 |
| 209 <template is="dom-if" if="[[!isGuest_]]"> | 209 <template is="dom-if" if="[[!isGuest_]]"> |
| 210 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable> | 210 <a class="settings-box two-line" actionable tabindex="-1" target="_blank" |
| 211 href="https://chrome.google.com/webstore/category/collection/accessibi
lity"> |
| 211 <div class="start"> | 212 <div class="start"> |
| 212 $i18n{additionalFeaturesTitle} | 213 $i18n{additionalFeaturesTitle} |
| 213 <div class="secondary" id="moreFeaturesSecondary"> | 214 <div class="secondary" id="moreFeaturesSecondary"> |
| 214 $i18n{a11yWebStore} | 215 $i18n{a11yWebStore} |
| 215 </div> | 216 </div> |
| 216 </div> | 217 </div> |
| 217 <button class="icon-external" is="paper-icon-button-light" | 218 <button class="icon-external" is="paper-icon-button-light" |
| 218 aria-label="$i18n{additionalFeaturesTitle}" | 219 aria-label="$i18n{additionalFeaturesTitle}" |
| 219 aria-describedby="moreFeaturesSecondary"></button> | 220 aria-describedby="moreFeaturesSecondary"></button> |
| 220 </div> | 221 </a> |
| 221 </template> | 222 </template> |
| 222 </template> | 223 </template> |
| 223 <script src="manage_a11y_page.js"></script> | 224 <script src="manage_a11y_page.js"></script> |
| 224 </dom-module> | 225 </dom-module> |
| OLD | NEW |