| 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-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/paper-styles/shadow.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 6 <link rel="import" href="chrome://resources/html/icon.html"> | 6 <link rel="import" href="chrome://resources/html/icon.html"> |
| 7 <link rel="import" href="chrome://resources/html/util.html"> | 7 <link rel="import" href="chrome://resources/html/util.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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 } | 203 } |
| 204 </style> | 204 </style> |
| 205 | 205 |
| 206 <div id="main-container"> | 206 <div id="main-container"> |
| 207 <div id="background-clip"> | 207 <div id="background-clip"> |
| 208 <div id="background"></div> | 208 <div id="background"></div> |
| 209 </div> | 209 </div> |
| 210 <div id="date-accessed" class="card-title"> | 210 <div id="date-accessed" class="card-title"> |
| 211 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] | 211 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] |
| 212 </div> | 212 </div> |
| 213 <div id="item-container"> | 213 <div id="item-container" |
| 214 on-mousedown="onItemMousedown_" |
| 215 on-click="onItemClick_"> |
| 214 <button is="paper-icon-button-light" id="checkbox" | 216 <button is="paper-icon-button-light" id="checkbox" |
| 215 on-mousedown="onCheckboxMousedown_" | |
| 216 on-click="onCheckboxSelected_" | |
| 217 disabled="[[selectionNotAllowed_()]]" | 217 disabled="[[selectionNotAllowed_()]]" |
| 218 role="checkbox" | 218 role="checkbox" |
| 219 aria-checked$="[[getAriaChecked_(selected)]]" | 219 aria-checked$="[[getAriaChecked_(selected)]]" |
| 220 aria-label$="[[getEntrySummary_(item)]]"> | 220 aria-label$="[[getEntrySummary_(item)]]"> |
| 221 <div id="checkmark"></div> | 221 <div id="checkmark"></div> |
| 222 </button> | 222 </button> |
| 223 <span id="time-accessed">[[item.readableTimestamp]]</span> | 223 <span id="time-accessed">[[item.readableTimestamp]]</span> |
| 224 <div class="website-icon" id="icon"></div> | 224 <div class="website-icon" id="icon"></div> |
| 225 <div id="title-and-domain"> | 225 <div id="title-and-domain"> |
| 226 <a href="[[item.url]]" id="title" class="website-title" | 226 <a href="[[item.url]]" id="title" class="website-title" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 245 <div></div> | 245 <div></div> |
| 246 <div></div> | 246 <div></div> |
| 247 <div></div> | 247 <div></div> |
| 248 </button> | 248 </button> |
| 249 </div> | 249 </div> |
| 250 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 250 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 251 </div> | 251 </div> |
| 252 </template> | 252 </template> |
| 253 <script src="chrome://history/history_item.js"></script> | 253 <script src="chrome://history/history_item.js"></script> |
| 254 </dom-module> | 254 </dom-module> |
| OLD | NEW |