| OLD | NEW | 
|---|
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> | 
| 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
     _menu.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
     _menu.html"> | 
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 
| 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
     dicator.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
     dicator.html"> | 
| 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
     l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
     l"> | 
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
     -icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
     -icon-button.html"> | 
| 10 <link rel="import" href="../i18n_setup.html"> | 10 <link rel="import" href="../i18n_setup.html"> | 
| 11 <link rel="import" href="../icons.html"> | 11 <link rel="import" href="../icons.html"> | 
| 12 <link rel="import" href="../route.html"> | 12 <link rel="import" href="../route.html"> | 
| 13 <link rel="import" href="../settings_shared_css.html"> | 13 <link rel="import" href="../settings_shared_css.html"> | 
| 14 <link rel="import" href="add_site_dialog.html"> | 14 <link rel="import" href="add_site_dialog.html"> | 
| 15 <link rel="import" href="constants.html"> | 15 <link rel="import" href="constants.html"> | 
| 16 <link rel="import" href="edit_exception_dialog.html"> | 16 <link rel="import" href="edit_exception_dialog.html"> | 
| 17 <link rel="import" href="site_settings_behavior.html"> | 17 <link rel="import" href="site_settings_behavior.html"> | 
| 18 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 18 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 
| 19 | 19 | 
| 20 <dom-module id="site-list"> | 20 <dom-module id="site-list"> | 
| 21   <template> | 21   <template> | 
| 22     <style include="settings-shared iron-flex"> | 22     <style include="settings-shared iron-flex"> | 
| 23       .selectable { | 23       .selectable { | 
| 24         -webkit-user-select: text; | 24         -webkit-user-select: text; | 
| 25       } | 25       } | 
| 26     </style> | 26     </style> | 
| 27     <div id="category"> | 27     <div id="category"> | 
| 28       <div class="settings-box first" hidden$="[[allSites]]"> | 28       <div class="settings-box first" hidden$="[[allSites]]"> | 
| 29         <h2 class="start">[[categoryHeader]]</h2> | 29         <h2 class="start">[[categoryHeader]]</h2> | 
| 30         <paper-button id="addSite" | 30         <paper-button id="addSite" class="header-aligned-button" | 
| 31             class="secondary-button header-aligned-button" |  | 
| 32             hidden="[[readOnlyList]]" on-tap="onAddSiteTap_"> | 31             hidden="[[readOnlyList]]" on-tap="onAddSiteTap_"> | 
| 33           $i18n{add} | 32           $i18n{add} | 
| 34         </paper-button> | 33         </paper-button> | 
| 35       </div> | 34       </div> | 
| 36 | 35 | 
| 37       <dialog is="cr-action-menu"> | 36       <dialog is="cr-action-menu"> | 
| 38         <button class="dropdown-item" role="option" id="allow" | 37         <button class="dropdown-item" role="option" id="allow" | 
| 39             on-tap="onAllowTap_" hidden$="[[!showAllowAction_]]"> | 38             on-tap="onAllowTap_" hidden$="[[!showAllowAction_]]"> | 
| 40           $i18n{siteSettingsActionAllow} | 39           $i18n{siteSettingsActionAllow} | 
| 41         </button> | 40         </button> | 
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 107       </div> | 106       </div> | 
| 108     </div> | 107     </div> | 
| 109     <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> | 108     <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> | 
| 110       <settings-edit-exception-dialog model="[[actionMenuSite_]]" | 109       <settings-edit-exception-dialog model="[[actionMenuSite_]]" | 
| 111           on-close="onEditExceptionDialogClosed_"> | 110           on-close="onEditExceptionDialogClosed_"> | 
| 112       </settings-edit-exception-dialog> | 111       </settings-edit-exception-dialog> | 
| 113     </template> | 112     </template> | 
| 114   </template> | 113   </template> | 
| 115   <script src="site_list.js"></script> | 114   <script src="site_list.js"></script> | 
| 116 </dom-module> | 115 </dom-module> | 
| OLD | NEW | 
|---|