Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: chrome/browser/resources/settings/a11y_page/a11y_page.html

Issue 1967323002: [MD settings] cleanup   use (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/reset_page/powerwash_dialog.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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}&nbsp; 13 <span>
14 <a href="$i18nRaw{a11yLearnMoreUrl}" 14 $i18n{a11yExplanation}
15 target="_blank">$i18n{learnMore}</a> 15 <a href="$i18nRaw{a11yLearnMoreUrl}"
16 target="_blank">$i18n{learnMore}</a>
Dan Beam 2016/05/11 23:24:44 you may be able to unwrap this now
dschuyler 2016/05/11 23:28:52 Done.
17 </span>
16 </div> 18 </div>
17 19
18 <div class="settings-box block"> 20 <div class="settings-box block">
19 <settings-checkbox label="$i18n{optionsInMenuLabel}" 21 <settings-checkbox label="$i18n{optionsInMenuLabel}"
20 pref="{{prefs.settings.a11y.enable_menu}}"> 22 pref="{{prefs.settings.a11y.enable_menu}}">
21 </settings-checkbox> 23 </settings-checkbox>
22 <settings-checkbox label="$i18n{largeMouseCursorLabel}" 24 <settings-checkbox label="$i18n{largeMouseCursorLabel}"
23 pref="{{prefs.settings.a11y.large_cursor_enabled}}"> 25 pref="{{prefs.settings.a11y.large_cursor_enabled}}">
24 </settings-checkbox> 26 </settings-checkbox>
25 <settings-checkbox label="$i18n{highContrastLabel}" 27 <settings-checkbox label="$i18n{highContrastLabel}"
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 <div class="settings-box first"> 88 <div class="settings-box first">
87 </if> 89 </if>
88 <div class="button-strip"> 90 <div class="button-strip">
89 <paper-button class="primary-button" 91 <paper-button class="primary-button"
90 on-tap="onMoreFeaturesTap_">$i18n{moreFeaturesLink}</paper-button> 92 on-tap="onMoreFeaturesTap_">$i18n{moreFeaturesLink}</paper-button>
91 </div> 93 </div>
92 </div> 94 </div>
93 </template> 95 </template>
94 <script src="a11y_page.js"></script> 96 <script src="a11y_page.js"></script>
95 </dom-module> 97 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/reset_page/powerwash_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698