Index: chrome/browser/resources/md_history/app.vulcanized.html |
diff --git a/chrome/browser/resources/md_history/app.vulcanized.html b/chrome/browser/resources/md_history/app.vulcanized.html |
index 425ccb7dbf9be2a2959e50125a8c28d1734f72ac..ed7ec8685e596ea7f4af1f3fa0caeaa52dd26e4b 100644 |
--- a/chrome/browser/resources/md_history/app.vulcanized.html |
+++ b/chrome/browser/resources/md_history/app.vulcanized.html |
@@ -3041,6 +3041,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
</template> |
</dom-module> |
+<link rel="import" href="chrome://history/constants.html"> |
<dom-module id="iron-collapse" assetpath="chrome://resources/polymer/v1_0/iron-collapse/"> |
<template> |
@@ -3427,7 +3428,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
<span id="time-accessed">[[item.readableTimestamp]]</span> |
<div class="website-icon" id="icon"></div> |
<div id="title-and-domain"> |
- <a href="[[item.url]]" id="title" class="website-title" title="[[cropItemTitle_(item.title)]]"> |
+ <a href="[[item.url]]" id="title" class="website-title" title="[[cropItemTitle_(item.title)]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_"> |
<history-searched-label title="[[cropItemTitle_(item.title)]]" search-term="[[searchTerm]]"></history-searched-label> |
</a> |
<span id="domain">[[item.domain]]</span> |
@@ -3448,7 +3449,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
</div> |
</template> |
</dom-module> |
-<link rel="import" href="chrome://history/constants.html"> |
<dom-module id="history-grouped-list" assetpath="chrome://history/"> |
<template> |
<style include="shared-style"> |
@@ -3758,7 +3758,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
<template is="dom-repeat" items="[[tabs]]" as="tab" id="tab-list"> |
<div id="item-container"> |
<div id="icon" class="website-icon"></div> |
- <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" on-click="openTab_"> |
+ <a href="[[tab.url]]" class="website-title" title="[[tab.title]]" on-click="openTab_" on-contextmenu="onLinkRightClick_"> |
<history-searched-label title="[[tab.title]]" search-term="[[searchTerm]]"></history-searched-label> |
</a> |
</div> |