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

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

Issue 2801753003: MD-Settings: Label toggle button in Accessibility section. (Closed)
Patch Set: keep div Created 3 years, 8 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 | no next file » | 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-icon-button/paper -icon-button-light.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
3 <link rel="import" href="../i18n_setup.html"> 3 <link rel="import" href="../i18n_setup.html">
4 <link rel="import" href="../settings_shared_css.html"> 4 <link rel="import" href="../settings_shared_css.html">
5 5
6 <if expr="chromeos"> 6 <if expr="chromeos">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
8 <link rel="import" href="manage_a11y_page.html"> 8 <link rel="import" href="manage_a11y_page.html">
9 <link rel="import" href="../controls/settings_toggle_button.html"> 9 <link rel="import" href="../controls/settings_toggle_button.html">
10 <link rel="import" href="../settings_page/settings_animated_pages.html"> 10 <link rel="import" href="../settings_page/settings_animated_pages.html">
11 <link rel="import" href="../settings_page/settings_subpage.html"> 11 <link rel="import" href="../settings_page/settings_subpage.html">
12 </if> 12 </if>
13 13
14 <dom-module id="settings-a11y-page"> 14 <dom-module id="settings-a11y-page">
15 <template> 15 <template>
16 <style include="settings-shared"></style> 16 <style include="settings-shared"></style>
17 <if expr="chromeos"> 17 <if expr="chromeos">
18 <settings-animated-pages id="pages" current-route="{{currentRoute}}" 18 <settings-animated-pages id="pages" current-route="{{currentRoute}}"
19 section="a11y"> 19 section="a11y">
20 <neon-animatable route-path="default"> 20 <neon-animatable route-path="default">
21 <div class="settings-box first"> 21 <div class="settings-box">
22 <div id="optionsInMenuLabel" class="start">
Dan Beam 2017/04/11 16:41:31 please locally try your changes: http://i.imgur.co
Dan Beam 2017/04/11 19:09:36 if it's not clear, the ==0 toggle button is suppos
23 $i18n{optionsInMenuLabel}
24 </div>
25 <settings-toggle-button id="optionsInMenuToggle" 22 <settings-toggle-button id="optionsInMenuToggle"
26 pref="{{prefs.settings.a11y.enable_menu}}" 23 label="$i18n{optionsInMenuLabel}"
27 aria-labelledby="optionsInMenuLabel"> 24 pref="{{prefs.settings.a11y.enable_menu}}">
28 </settings-toggle-button> 25 </settings-toggle-button>
29 </div> 26 </div>
30 <div id="subpage-trigger" class="settings-box two-line" 27 <div id="subpage-trigger" class="settings-box two-line"
31 on-tap="onManageAccessibilityFeaturesTap_" actionable> 28 on-tap="onManageAccessibilityFeaturesTap_" actionable>
32 <div class="start"> 29 <div class="start">
33 $i18n{manageAccessibilityFeatures} 30 $i18n{manageAccessibilityFeatures}
34 <div class="secondary" id="themesSecondary"> 31 <div class="secondary" id="themesSecondary">
35 $i18n{moreFeaturesLinkDescription} 32 $i18n{moreFeaturesLinkDescription}
36 </div> 33 </div>
37 </div> 34 </div>
(...skipping 25 matching lines...) Expand all
63 </div> 60 </div>
64 <button class="icon-external" is="paper-icon-button-light" 61 <button class="icon-external" is="paper-icon-button-light"
65 aria-label="$i18n{moreFeaturesLink}" 62 aria-label="$i18n{moreFeaturesLink}"
66 aria-describedby="moreFeaturesSecondary"></button> 63 aria-describedby="moreFeaturesSecondary"></button>
67 </div> 64 </div>
68 </if> 65 </if>
69 66
70 </template> 67 </template>
71 <script src="a11y_page.js"></script> 68 <script src="a11y_page.js"></script>
72 </dom-module> 69 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698