| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 4 <link rel="import" href="chrome://md-settings/settings_dialog_css.html"> |
| 4 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 5 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 5 | 6 |
| 6 <dom-module id="settings-startup-urls-page"> | 7 <dom-module id="settings-startup-urls-page"> |
| 7 <link rel="import" type="css" href="chrome://md-settings/settings_dialog.css"> | |
| 8 <link rel="import" type="css" href="on_startup_shared.css"> | 8 <link rel="import" type="css" href="on_startup_shared.css"> |
| 9 <template> | 9 <template> |
| 10 <style include="settings-dialog"></style> |
| 10 <style include="settings-shared"></style> | 11 <style include="settings-shared"></style> |
| 11 <div class="list-frame vertical-list"> | 12 <div class="list-frame vertical-list"> |
| 12 <template is="dom-repeat" items="[[startupPages_]]"> | 13 <template is="dom-repeat" items="[[startupPages_]]"> |
| 13 <div class="list-item"> | 14 <div class="list-item"> |
| 14 <iron-icon class="secondary" icon="image:brightness-1" | 15 <iron-icon class="secondary" icon="image:brightness-1" |
| 15 item-icon></iron-icon> | 16 item-icon></iron-icon> |
| 16 <div class="middle"> | 17 <div class="middle"> |
| 17 <div class="text-elide">[[item.title]]</div> | 18 <div class="text-elide">[[item.title]]</div> |
| 18 <div class="text-elide secondary">[[item.url]]</div> | 19 <div class="text-elide secondary">[[item.url]]</div> |
| 19 </div> | 20 </div> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 50 </paper-button> | 51 </paper-button> |
| 51 </div> | 52 </div> |
| 52 </div> | 53 </div> |
| 53 </div> | 54 </div> |
| 54 </div> | 55 </div> |
| 55 </paper-dialog> | 56 </paper-dialog> |
| 56 | 57 |
| 57 </template> | 58 </template> |
| 58 <script src="startup_urls_page.js"></script> | 59 <script src="startup_urls_page.js"></script> |
| 59 </dom-module> | 60 </dom-module> |
| OLD | NEW |