| 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> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 </template> | 81 </template> |
| 82 </div> | 82 </div> |
| 83 </if> | 83 </if> |
| 84 | 84 |
| 85 <if expr="chromeos"> | 85 <if expr="chromeos"> |
| 86 <div class="settings-box"> | 86 <div class="settings-box"> |
| 87 </if> | 87 </if> |
| 88 <if expr="not chromeos"> | 88 <if expr="not chromeos"> |
| 89 <div class="settings-box first"> | 89 <div class="settings-box first"> |
| 90 </if> | 90 </if> |
| 91 <div class="button-strip"> | 91 <paper-button class="primary-button" on-tap="onMoreFeaturesTap_"> |
| 92 <paper-button class="primary-button" | 92 $i18n{moreFeaturesLink} |
| 93 on-tap="onMoreFeaturesTap_">$i18n{moreFeaturesLink}</paper-button> | 93 </paper-button> |
| 94 </div> | |
| 95 </div> | 94 </div> |
| 96 </template> | 95 </template> |
| 97 <script src="a11y_page.js"></script> | 96 <script src="a11y_page.js"></script> |
| 98 </dom-module> | 97 </dom-module> |
| OLD | NEW |