OLD | NEW |
1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
3 <if expr="chromeos"> | 3 <if expr="chromeos"> |
4 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> | 4 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> |
5 </if> | 5 </if> |
6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
7 | 7 |
8 <dom-module id="settings-a11y-page"> | 8 <dom-module id="settings-a11y-page"> |
9 <template> | 9 <template> |
10 <style include="settings-shared"></style> | 10 <style include="settings-shared"></style> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 <option value="800" i18n-content="delayBeforeClickLong"> | 54 <option value="800" i18n-content="delayBeforeClickLong"> |
55 </option> | 55 </option> |
56 <option value="1000" i18n-content="delayBeforeClickVeryLong"> | 56 <option value="1000" i18n-content="delayBeforeClickVeryLong"> |
57 </option> | 57 </option> |
58 </select> | 58 </select> |
59 </div> | 59 </div> |
60 | 60 |
61 <settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" | 61 <settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" |
62 i18n-values="label:onScreenKeyboardLabel"> | 62 i18n-values="label:onScreenKeyboardLabel"> |
63 </settings-checkbox> | 63 </settings-checkbox> |
| 64 <settings-checkbox pref="{{prefs.settings.a11y.mono_audio}}" |
| 65 i18n-values="label:monoAudioLabel"> |
| 66 </settings-checkbox> |
64 <template is="dom-if" if="[[showExperimentalFeatures_]]"> | 67 <template is="dom-if" if="[[showExperimentalFeatures_]]"> |
65 <settings-checkbox pref="{{prefs.settings.a11y.caret_highlight}}" | 68 <settings-checkbox pref="{{prefs.settings.a11y.caret_highlight}}" |
66 i18n-values="label:caretHighlightLabel"> | 69 i18n-values="label:caretHighlightLabel"> |
67 </settings-checkbox> | 70 </settings-checkbox> |
68 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}" | 71 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}" |
69 i18n-values="label:cursorHighlightLabel"> | 72 i18n-values="label:cursorHighlightLabel"> |
70 </settings-checkbox> | 73 </settings-checkbox> |
71 <settings-checkbox pref="{{prefs.settings.a11y.focus_highlight}}" | 74 <settings-checkbox pref="{{prefs.settings.a11y.focus_highlight}}" |
72 i18n-values="label:focusHighlightLabel"> | 75 i18n-values="label:focusHighlightLabel"> |
73 </settings-checkbox> | 76 </settings-checkbox> |
(...skipping 14 matching lines...) Expand all Loading... |
88 <div class="settings-box first"> | 91 <div class="settings-box first"> |
89 </if> | 92 </if> |
90 <div class="button-strip"> | 93 <div class="button-strip"> |
91 <paper-button i18n-content="moreFeaturesLink" class="primary-button" | 94 <paper-button i18n-content="moreFeaturesLink" class="primary-button" |
92 on-tap="onMoreFeaturesTap_"></paper-button> | 95 on-tap="onMoreFeaturesTap_"></paper-button> |
93 </div> | 96 </div> |
94 </div> | 97 </div> |
95 </template> | 98 </template> |
96 <script src="a11y_page.js"></script> | 99 <script src="a11y_page.js"></script> |
97 </dom-module> | 100 </dom-module> |
OLD | NEW |