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

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

Issue 2825493003: MD Settings: change outlinks to actually use <a> (Closed)
Patch Set: merge Created 3 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/a11y_page/a11y_page.js » ('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-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">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 associated-control="[[$$('#subpage-trigger')]]" 43 associated-control="[[$$('#subpage-trigger')]]"
44 page-title="$i18n{manageAccessibilityFeatures}"> 44 page-title="$i18n{manageAccessibilityFeatures}">
45 <settings-manage-a11y-page prefs="{{prefs}}"> 45 <settings-manage-a11y-page prefs="{{prefs}}">
46 </settings-manage-a11y-page> 46 </settings-manage-a11y-page>
47 </settings-subpage> 47 </settings-subpage>
48 </template> 48 </template>
49 </settings-animated-pages> 49 </settings-animated-pages>
50 </if> 50 </if>
51 51
52 <if expr="not chromeos"> 52 <if expr="not chromeos">
53 <div class="settings-box first two-line" on-tap="onMoreFeaturesTap_" 53 <a class="settings-box first two-line inherit-color no-outline"
54 actionable> 54 tabindex="-1" target="_blank"
55 href="https://chrome.google.com/webstore/category/collection/accessibili ty">
55 <div class="start"> 56 <div class="start">
56 $i18n{moreFeaturesLink} 57 $i18n{moreFeaturesLink}
57 <div class="secondary" id="moreFeaturesSecondary"> 58 <div class="secondary" id="moreFeaturesSecondary">
58 $i18n{a11yWebStore} 59 $i18n{a11yWebStore}
59 </div> 60 </div>
60 </div> 61 </div>
61 <button class="icon-external" is="paper-icon-button-light" 62 <button class="icon-external" is="paper-icon-button-light" actionable
62 aria-label="$i18n{moreFeaturesLink}" 63 aria-label="$i18n{moreFeaturesLink}"
63 aria-describedby="moreFeaturesSecondary"></button> 64 aria-describedby="moreFeaturesSecondary"></button>
64 </div> 65 </a>
65 </if> 66 </if>
66 67
67 </template> 68 </template>
68 <script src="a11y_page.js"></script> 69 <script src="a11y_page.js"></script>
69 </dom-module> 70 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/a11y_page/a11y_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698