Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Side by Side Diff: chrome/browser/resources/md_history/history_item.html

Issue 2454303002: [MD History] Add full time hover text to dates in history items. (Closed)
Patch Set: fix nit Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 <div id="item-container"> 215 <div id="item-container">
216 <button is="paper-icon-button-light" id="checkbox" 216 <button is="paper-icon-button-light" id="checkbox"
217 on-mousedown="onCheckboxMousedown_" 217 on-mousedown="onCheckboxMousedown_"
218 on-click="onCheckboxSelected_" 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">[[item.readableTimestamp]]</span> 225 <span id="time-accessed" on-mouseover="addTimeTitle_">
226 [[item.readableTimestamp]]
227 </span>
226 <div class="website-icon" id="icon"></div> 228 <div class="website-icon" id="icon"></div>
227 <div id="title-and-domain"> 229 <div id="title-and-domain">
228 <a href="[[item.url]]" id="title" class="website-title" 230 <a href="[[item.url]]" id="title" class="website-title"
229 title="[[item.title]]" on-click="onLinkClick_" 231 title="[[item.title]]" on-click="onLinkClick_"
230 on-contextmenu="onLinkRightClick_"> 232 on-contextmenu="onLinkRightClick_">
231 <history-searched-label title="[[item.title]]" 233 <history-searched-label title="[[item.title]]"
232 search-term="[[searchTerm]]"></history-searched-label> 234 search-term="[[searchTerm]]"></history-searched-label>
233 </a> 235 </a>
234 <span id="domain">[[item.domain]]</span> 236 <span id="domain">[[item.domain]]</span>
235 </div> 237 </div>
(...skipping 11 matching lines...) Expand all
247 <div></div> 249 <div></div>
248 <div></div> 250 <div></div>
249 <div></div> 251 <div></div>
250 </button> 252 </button>
251 </div> 253 </div>
252 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> 254 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div>
253 </div> 255 </div>
254 </template> 256 </template>
255 <script src="chrome://history/history_item.js"></script> 257 <script src="chrome://history/history_item.js"></script>
256 </dom-module> 258 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.vulcanized.html ('k') | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698