| 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"> | 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"> | 3 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> |
| 4 | 4 |
| 5 <dom-module id="cr-settings-a11y-page"> | 5 <dom-module id="cr-settings-a11y-page"> |
| 6 <link rel="import" type="css" | 6 <link rel="import" type="css" |
| 7 href="chrome://md-settings/settings_page/settings_page.css"> | 7 href="chrome://md-settings/settings_page/settings_page.css"> |
| 8 <link rel="import" type="css" href="a11y_page.css"> | 8 <link rel="import" type="css" href="a11y_page.css"> |
| 9 <template> | 9 <template> |
| 10 <paper-material> | 10 <paper-material> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 <option value="600" i18n-content="delayBeforeClickShort"> | 52 <option value="600" i18n-content="delayBeforeClickShort"> |
| 53 </option> | 53 </option> |
| 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 <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" | 61 <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" |
| 62 i18n-values="label:OnScreenKeyboardLabel"> | 62 i18n-values="label:onScreenKeyboardLabel"> |
| 63 </cr-settings-checkbox> | 63 </cr-settings-checkbox> |
| 64 </if> | 64 </if> |
| 65 | 65 |
| 66 </paper-material> | 66 </paper-material> |
| 67 </template> | 67 </template> |
| 68 <script src="a11y_page.js"></script> | 68 <script src="a11y_page.js"></script> |
| 69 </dom-module> | 69 </dom-module> |
| OLD | NEW |