| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> | |
| 3 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> | 2 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> |
| 3 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm
l"> |
| 4 | 4 |
| 5 <dom-module id="cr-settings-a11y-page"> | 5 <dom-module id="cr-settings-a11y-page"> |
| 6 <link rel="import" type="css" | |
| 7 href="chrome://md-settings/settings_page/settings_page.css"> | |
| 8 <link rel="import" type="css" href="a11y_page.css"> | 6 <link rel="import" type="css" href="a11y_page.css"> |
| 9 <template> | 7 <template> |
| 10 <paper-material> | 8 <cr-settings-section page-title="[[pageTitle]]" icon="[[icon]]"> |
| 11 <div class="more-a11y-link"> | 9 <div class="more-a11y-link"> |
| 12 <a href="https://chrome.google.com/webstore/category/collection/accessib
ility" | 10 <a href="https://chrome.google.com/webstore/category/collection/accessib
ility" |
| 13 target="_blank" i18n-content="moreFeaturesLink"></a> | 11 target="_blank" i18n-content="moreFeaturesLink"></a> |
| 14 </div> | 12 </div> |
| 15 | 13 |
| 16 <if expr="chromeos"> | 14 <if expr="chromeos"> |
| 17 <cr-settings-checkbox i18n-values="label:optionsInMenuLabel" | 15 <cr-settings-checkbox i18n-values="label:optionsInMenuLabel" |
| 18 pref="{{prefs.settings.a11y.enable_menu}}"> | 16 pref="{{prefs.settings.a11y.enable_menu}}"> |
| 19 </cr-settings-checkbox> | 17 </cr-settings-checkbox> |
| 20 <cr-settings-checkbox i18n-values="label:largeMouseCursorLabel" | 18 <cr-settings-checkbox i18n-values="label:largeMouseCursorLabel" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 <option value="1000" i18n-content="delayBeforeClickVeryLong"> | 54 <option value="1000" i18n-content="delayBeforeClickVeryLong"> |
| 57 </option> | 55 </option> |
| 58 </select> | 56 </select> |
| 59 </div> | 57 </div> |
| 60 | 58 |
| 61 <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" | 59 <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" |
| 62 i18n-values="label:onScreenKeyboardLabel"> | 60 i18n-values="label:onScreenKeyboardLabel"> |
| 63 </cr-settings-checkbox> | 61 </cr-settings-checkbox> |
| 64 </if> | 62 </if> |
| 65 | 63 |
| 66 </paper-material> | 64 </cr-settings-section> |
| 67 </template> | 65 </template> |
| 68 <script src="a11y_page.js"></script> | 66 <script src="a11y_page.js"></script> |
| 69 </dom-module> | 67 </dom-module> |
| OLD | NEW |