| 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> |
| 11 <if expr="chromeos"> | 11 <if expr="chromeos"> |
| 12 <div class="settings-box row first"> | 12 <div class="settings-box row first"> |
| 13 $i18n{a11yExplanation} | 13 <span> |
| 14 <a href="$i18nRaw{a11yLearnMoreUrl}" | 14 $i18n{a11yExplanation} |
| 15 target="_blank">$i18n{learnMore}</a> | 15 <a href="$i18nRaw{a11yLearnMoreUrl}" target="_blank"> |
| 16 $i18n{learnMore} |
| 17 </a> |
| 18 </span> |
| 16 </div> | 19 </div> |
| 17 | 20 |
| 18 <div class="settings-box block"> | 21 <div class="settings-box block"> |
| 19 <settings-checkbox label="$i18n{optionsInMenuLabel}" | 22 <settings-checkbox label="$i18n{optionsInMenuLabel}" |
| 20 pref="{{prefs.settings.a11y.enable_menu}}"> | 23 pref="{{prefs.settings.a11y.enable_menu}}"> |
| 21 </settings-checkbox> | 24 </settings-checkbox> |
| 22 <settings-checkbox label="$i18n{largeMouseCursorLabel}" | 25 <settings-checkbox label="$i18n{largeMouseCursorLabel}" |
| 23 pref="{{prefs.settings.a11y.large_cursor_enabled}}"> | 26 pref="{{prefs.settings.a11y.large_cursor_enabled}}"> |
| 24 </settings-checkbox> | 27 </settings-checkbox> |
| 25 <settings-checkbox label="$i18n{highContrastLabel}" | 28 <settings-checkbox label="$i18n{highContrastLabel}" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 <div class="settings-box first"> | 89 <div class="settings-box first"> |
| 87 </if> | 90 </if> |
| 88 <div class="button-strip"> | 91 <div class="button-strip"> |
| 89 <paper-button class="primary-button" | 92 <paper-button class="primary-button" |
| 90 on-tap="onMoreFeaturesTap_">$i18n{moreFeaturesLink}</paper-button> | 93 on-tap="onMoreFeaturesTap_">$i18n{moreFeaturesLink}</paper-button> |
| 91 </div> | 94 </div> |
| 92 </div> | 95 </div> |
| 93 </template> | 96 </template> |
| 94 <script src="a11y_page.js"></script> | 97 <script src="a11y_page.js"></script> |
| 95 </dom-module> | 98 </dom-module> |
| OLD | NEW |