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-icon/iron-icon.htm
l"> | 3 <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/paper-button/paper-butt
on.html"> | 4 <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-checkbox/paper-ch
eckbox.html"> | 5 <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-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://resources/html/util.html"> | 8 <link rel="import" href="chrome://resources/html/util.html"> |
9 <link rel="import" href="chrome://history/browser_service.html"> | 9 <link rel="import" href="chrome://history/browser_service.html"> |
10 <link rel="import" href="chrome://history/constants.html"> | 10 <link rel="import" href="chrome://history/constants.html"> |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 142 |
143 <div id="sizing-container"> | 143 <div id="sizing-container"> |
144 <div id="main-container"> | 144 <div id="main-container"> |
145 <div id="background"></div> | 145 <div id="background"></div> |
146 <div id="date-accessed" class="card-title"> | 146 <div id="date-accessed" class="card-title"> |
147 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] | 147 [[cardTitle_(numberOfItems, item.dateRelativeDay, searchTerm)]] |
148 </div> | 148 </div> |
149 <div id="item-container"> | 149 <div id="item-container"> |
150 <paper-checkbox id="checkbox" on-mousedown="onCheckboxMousedown_" | 150 <paper-checkbox id="checkbox" on-mousedown="onCheckboxMousedown_" |
151 on-click="onCheckboxSelected_" checked="{{selected}}" | 151 on-click="onCheckboxSelected_" checked="{{selected}}" |
152 disabled="[[selectionNotAllowed_()]]"> | 152 disabled="[[selectionNotAllowed_()]]" |
| 153 aria-label$="[[getEntrySummary_(item)]]"> |
153 </paper-checkbox> | 154 </paper-checkbox> |
154 <span id="time-accessed">[[item.readableTimestamp]]</span> | 155 <span id="time-accessed">[[item.readableTimestamp]]</span> |
155 <div class="website-icon" id="icon"></div> | 156 <div class="website-icon" id="icon"></div> |
156 <div id="title-and-domain"> | 157 <div id="title-and-domain"> |
157 <a href="[[item.url]]" id="title" class="website-title" | 158 <a href="[[item.url]]" id="title" class="website-title" |
158 title="[[cropItemTitle_(item.title)]]" | 159 title="[[cropItemTitle_(item.title)]]" |
159 on-click="onLinkClick_" on-contextmenu="onLinkRightClick_"> | 160 on-click="onLinkClick_" on-contextmenu="onLinkRightClick_"> |
160 <history-searched-label title="[[cropItemTitle_(item.title)]]" | 161 <history-searched-label title="[[cropItemTitle_(item.title)]]" |
161 search-term="[[searchTerm]]"></history-searched-label> | 162 search-term="[[searchTerm]]"></history-searched-label> |
162 </a> | 163 </a> |
(...skipping 14 matching lines...) Expand all Loading... |
177 <div></div> | 178 <div></div> |
178 <div></div> | 179 <div></div> |
179 </button> | 180 </button> |
180 </div> | 181 </div> |
181 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> | 182 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> |
182 </div> | 183 </div> |
183 </div> | 184 </div> |
184 </template> | 185 </template> |
185 <script src="chrome://history/history_item.js"></script> | 186 <script src="chrome://history/history_item.js"></script> |
186 </dom-module> | 187 </dom-module> |
OLD | NEW |