| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_row.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/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 8 <link rel="import" href="chrome://resources/html/icon.html"> | 8 <link rel="import" href="chrome://resources/html/icon.html"> |
| 9 <link rel="import" href="chrome://history/browser_service.html"> | 9 <link rel="import" href="chrome://history/browser_service.html"> |
| 10 <link rel="import" href="chrome://history/constants.html"> | 10 <link rel="import" href="chrome://history/constants.html"> |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 id="collapse-button" title$="[[getCollapseTitle_(opened)]]"> | 100 id="collapse-button" title$="[[getCollapseTitle_(opened)]]"> |
| 101 <iron-icon icon="[[getCollapseIcon_(opened)]]" | 101 <iron-icon icon="[[getCollapseIcon_(opened)]]" |
| 102 id="dropdown-indicator"> | 102 id="dropdown-indicator"> |
| 103 </iron-icon> | 103 </iron-icon> |
| 104 </button> | 104 </button> |
| 105 </div> | 105 </div> |
| 106 </div> | 106 </div> |
| 107 | 107 |
| 108 <iron-collapse opened="{{opened}}" id="collapse"> | 108 <iron-collapse opened="{{opened}}" id="collapse"> |
| 109 <div id="tab-item-list"> | 109 <div id="tab-item-list"> |
| 110 <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list"> | 110 <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list" |
| 111 notify-dom-change> |
| 111 <div class="item-container"> | 112 <div class="item-container"> |
| 112 <div class="website-icon"></div> | 113 <div class="website-icon"></div> |
| 113 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" | 114 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" |
| 114 on-click="openTab_" on-contextmenu="onLinkRightClick_"> | 115 on-click="openTab_" on-contextmenu="onLinkRightClick_"> |
| 115 <history-searched-label title="[[tab.title]]" | 116 <history-searched-label title="[[tab.title]]" |
| 116 search-term="[[searchTerm]]"></history-searched-label> | 117 search-term="[[searchTerm]]"></history-searched-label> |
| 117 </a> | 118 </a> |
| 118 </div> | 119 </div> |
| 119 <div class="window-separator" | 120 <div class="window-separator" |
| 120 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> | 121 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> |
| 121 </div> | 122 </div> |
| 122 </template> | 123 </template> |
| 123 </div> | 124 </div> |
| 124 </iron-collapse> | 125 </iron-collapse> |
| 125 </div> | 126 </div> |
| 126 </template> | 127 </template> |
| 127 <script src="chrome://history/synced_device_card.js"></script> | 128 <script src="chrome://history/synced_device_card.js"></script> |
| 128 </dom-module> | 129 </dom-module> |
| OLD | NEW |