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 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> | 3 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> |
4 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 4 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
5 | 5 |
6 <dom-module id="settings-a11y-page"> | 6 <dom-module id="settings-a11y-page"> |
7 <template> | 7 <template> |
8 <style include="settings-shared"></style> | 8 <style include="settings-shared"></style> |
9 <div class="settings-box row first"> | 9 <div class="settings-box row first"> |
10 <span i18n-content="a11yExplanation"></span> | 10 <span i18n-content="a11yExplanation"></span> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 <option value="800" i18n-content="delayBeforeClickLong"> | 51 <option value="800" i18n-content="delayBeforeClickLong"> |
52 </option> | 52 </option> |
53 <option value="1000" i18n-content="delayBeforeClickVeryLong"> | 53 <option value="1000" i18n-content="delayBeforeClickVeryLong"> |
54 </option> | 54 </option> |
55 </select> | 55 </select> |
56 </div> | 56 </div> |
57 | 57 |
58 <settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" | 58 <settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" |
59 i18n-values="label:onScreenKeyboardLabel"> | 59 i18n-values="label:onScreenKeyboardLabel"> |
60 </settings-checkbox> | 60 </settings-checkbox> |
| 61 <template is="dom-if" if="[[showExperimentalFeatures_]]"> |
| 62 <settings-checkbox pref="{{prefs.settings.a11y.caret_highlight}}" |
| 63 i18n-values="label:caretHighlightLabel"> |
| 64 </settings-checkbox> |
| 65 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}" |
| 66 i18n-values="label:cursorHighlightLabel"> |
| 67 </settings-checkbox> |
| 68 <settings-checkbox pref="{{prefs.settings.a11y.focus_highlight}}" |
| 69 i18n-values="label:focusHighlightLabel"> |
| 70 </settings-checkbox> |
| 71 <settings-checkbox pref="{{prefs.settings.a11y.select_to_speak}}" |
| 72 i18n-values="label:selectToSpeakLabel"> |
| 73 </settings-checkbox> |
| 74 <settings-checkbox pref="{{prefs.settings.a11y.switch_access}}" |
| 75 i18n-values="label:switchAccessLabel"> |
| 76 </settings-checkbox> |
| 77 </template> |
61 </div> | 78 </div> |
62 | 79 |
63 <div class="settings-box"> | 80 <div class="settings-box"> |
64 <div class="button-strip"> | 81 <div class="button-strip"> |
65 <paper-button i18n-content="moreFeaturesLink" | 82 <paper-button i18n-content="moreFeaturesLink" |
66 on-tap="onMoreFeaturesTap_"></paper-button> | 83 on-tap="onMoreFeaturesTap_"></paper-button> |
67 </div> | 84 </div> |
68 </div> | 85 </div> |
69 </template> | 86 </template> |
70 <script src="a11y_page.js"></script> | 87 <script src="a11y_page.js"></script> |
71 </dom-module> | 88 </dom-module> |
OLD | NEW |