| 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-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="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| 9 <link rel="import" href="/a11y_page/manage_a11y_page.html"> | 9 <link rel="import" href="manage_a11y_page.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 first"> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 51 $i18n{moreFeaturesLink} | 51 $i18n{moreFeaturesLink} |
| 52 <div class="secondary">$i18n{a11yWebStore}</div> | 52 <div class="secondary">$i18n{a11yWebStore}</div> |
| 53 </div> | 53 </div> |
| 54 <button class="icon-external" is="paper-icon-button-light"></button> | 54 <button class="icon-external" is="paper-icon-button-light"></button> |
| 55 </div> | 55 </div> |
| 56 </if> | 56 </if> |
| 57 | 57 |
| 58 </template> | 58 </template> |
| 59 <script src="a11y_page.js"></script> | 59 <script src="a11y_page.js"></script> |
| 60 </dom-module> | 60 </dom-module> |
| OLD | NEW |