| 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/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 3 <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-icon/iron-icon.htm
l"> | 4 <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-flex-layout/iron-f
lex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 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/html/icon.html"> | 7 <link rel="import" href="chrome://resources/html/icon.html"> |
| 8 <link rel="import" href="chrome://history/browser_service.html"> | 8 <link rel="import" href="chrome://history/browser_service.html"> |
| 9 <link rel="import" href="chrome://history/constants.html"> | 9 <link rel="import" href="chrome://history/constants.html"> |
| 10 <link rel="import" href="chrome://history/searched_label.html"> | 10 <link rel="import" href="chrome://history/searched_label.html"> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 </button> | 85 </button> |
| 86 </div> | 86 </div> |
| 87 </div> | 87 </div> |
| 88 | 88 |
| 89 <iron-collapse opened="{{opened}}" id="collapse"> | 89 <iron-collapse opened="{{opened}}" id="collapse"> |
| 90 <div id="tab-item-list"> | 90 <div id="tab-item-list"> |
| 91 <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list"> | 91 <template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list"> |
| 92 <div id="item-container"> | 92 <div id="item-container"> |
| 93 <div id="icon" class="website-icon"></div> | 93 <div id="icon" class="website-icon"></div> |
| 94 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" | 94 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" |
| 95 on-click="openTab_"> | 95 on-click="openTab_" on-contextmenu="onLinkRightClick_"> |
| 96 <history-searched-label title="[[tab.title]]" | 96 <history-searched-label title="[[tab.title]]" |
| 97 search-term="[[searchTerm]]"></history-searched-label> | 97 search-term="[[searchTerm]]"></history-searched-label> |
| 98 </a> | 98 </a> |
| 99 </div> | 99 </div> |
| 100 <div id="window-separator" | 100 <div id="window-separator" |
| 101 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> | 101 hidden$="[[!isWindowSeparatorIndex_(index, separatorIndexes)]]"> |
| 102 </div> | 102 </div> |
| 103 </template> | 103 </template> |
| 104 </div> | 104 </div> |
| 105 </iron-collapse> | 105 </iron-collapse> |
| 106 </div> | 106 </div> |
| 107 </template> | 107 </template> |
| 108 <script src="chrome://history/synced_device_card.js"></script> | 108 <script src="chrome://history/synced_device_card.js"></script> |
| 109 </dom-module> | 109 </dom-module> |
| OLD | NEW |