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

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

Issue 2227913002: MD History: Add tooltips for URLs on History page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.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-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
7 <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-icon-button/paper -icon-button-light.html">
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://resources/html/util.html"> 9 <link rel="import" href="chrome://resources/html/util.html">
10 <link rel="import" href="chrome://history/browser_service.html"> 10 <link rel="import" href="chrome://history/browser_service.html">
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 <div id="date-accessed" class="card-title"> 134 <div id="date-accessed" class="card-title">
135 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] 135 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]]
136 </div> 136 </div>
137 <div id="item-container"> 137 <div id="item-container">
138 <paper-checkbox id="checkbox" on-tap="onCheckboxSelected_" 138 <paper-checkbox id="checkbox" on-tap="onCheckboxSelected_"
139 checked="{{selected}}" disabled="[[selectionNotAllowed_()]]"> 139 checked="{{selected}}" disabled="[[selectionNotAllowed_()]]">
140 </paper-checkbox> 140 </paper-checkbox>
141 <span id="time-accessed">[[item.readableTimestamp]]</span> 141 <span id="time-accessed">[[item.readableTimestamp]]</span>
142 <div class="website-icon" id="icon"></div> 142 <div class="website-icon" id="icon"></div>
143 <div id="title-and-domain"> 143 <div id="title-and-domain">
144 <a href="[[item.url]]" id="title" class="website-title"> 144 <a href="[[item.url]]" id="title" class="website-title"
145 title="[[cropItemTitle_(item.title)]]">
145 <history-searched-label title="[[cropItemTitle_(item.title)]]" 146 <history-searched-label title="[[cropItemTitle_(item.title)]]"
146 search-term="[[searchTerm]]"></history-searched-label> 147 search-term="[[searchTerm]]"></history-searched-label>
147 </a> 148 </a>
148 <span id="domain">[[item.domain]]</span> 149 <span id="domain">[[item.domain]]</span>
149 </div> 150 </div>
150 <button is="paper-icon-button-light" id="bookmark-star" 151 <button is="paper-icon-button-light" id="bookmark-star"
151 title="$i18n{removeBookmark}" on-tap="onRemoveBookmarkTap_"> 152 title="$i18n{removeBookmark}" on-tap="onRemoveBookmarkTap_">
152 <iron-icon icon="cr:star"></iron-icon> 153 <iron-icon icon="cr:star"></iron-icon>
153 </button> 154 </button>
154 <button is="paper-icon-button-light" id="menu-button" 155 <button is="paper-icon-button-light" id="menu-button"
155 class="icon-button" title="$i18n{moreActionsButton}" 156 class="icon-button" title="$i18n{moreActionsButton}"
156 on-tap="onMenuButtonTap_"> 157 on-tap="onMenuButtonTap_">
157 <iron-icon icon="cr:more-vert"></iron-icon> 158 <iron-icon icon="cr:more-vert"></iron-icon>
158 </button> 159 </button>
159 </div> 160 </div>
160 <template is="dom-if" if="[[hasTimeGap]]"> 161 <template is="dom-if" if="[[hasTimeGap]]">
161 <div id="time-gap-separator"></div> 162 <div id="time-gap-separator"></div>
162 </template> 163 </template>
163 </div> 164 </div>
164 </div> 165 </div>
165 </template> 166 </template>
166 <script src="chrome://history/history_item.js"></script> 167 <script src="chrome://history/history_item.js"></script>
167 </dom-module> 168 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698