| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 } | 205 } |
| 206 </style> | 206 </style> |
| 207 | 207 |
| 208 <div id="main-container"> | 208 <div id="main-container"> |
| 209 <div id="background-clip"> | 209 <div id="background-clip"> |
| 210 <div id="background"></div> | 210 <div id="background"></div> |
| 211 </div> | 211 </div> |
| 212 <div id="date-accessed" class="card-title"> | 212 <div id="date-accessed" class="card-title"> |
| 213 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] | 213 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] |
| 214 </div> | 214 </div> |
| 215 <div id="item-container"> | 215 <div id="item-container" |
| 216 on-mousedown="onItemMousedown_" |
| 217 on-click="onItemClick_"> |
| 216 <button is="paper-icon-button-light" id="checkbox" | 218 <button is="paper-icon-button-light" id="checkbox" |
| 217 on-mousedown="onCheckboxMousedown_" | |
| 218 on-click="onCheckboxSelected_" | |
| 219 disabled="[[selectionNotAllowed_()]]" | 219 disabled="[[selectionNotAllowed_()]]" |
| 220 role="checkbox" | 220 role="checkbox" |
| 221 aria-checked$="[[getAriaChecked_(selected)]]" | 221 aria-checked$="[[getAriaChecked_(selected)]]" |
| 222 aria-label$="[[getEntrySummary_(item)]]"> | 222 aria-label$="[[getEntrySummary_(item)]]"> |
| 223 <div id="checkmark"></div> | 223 <div id="checkmark"></div> |
| 224 </button> | 224 </button> |
| 225 <span id="time-accessed" on-mouseover="addTimeTitle_"> | 225 <span id="time-accessed" on-mouseover="addTimeTitle_"> |
| 226 [[item.readableTimestamp]] | 226 [[item.readableTimestamp]] |
| 227 </span> | 227 </span> |
| 228 <div class="website-icon" id="icon"></div> | 228 <div class="website-icon" id="icon"></div> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 249 <div></div> | 249 <div></div> |
| 250 <div></div> | 250 <div></div> |
| 251 <div></div> | 251 <div></div> |
| 252 </button> | 252 </button> |
| 253 </div> | 253 </div> |
| 254 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 254 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
| 255 </div> | 255 </div> |
| 256 </template> | 256 </template> |
| 257 <script src="chrome://history/history_item.js"></script> | 257 <script src="chrome://history/history_item.js"></script> |
| 258 </dom-module> | 258 </dom-module> |
| OLD | NEW |