diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-19 00:58:45 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-19 00:58:45 +0000 |
commit | 7b30c97ea91c97af1fb352fb749a934e2386a3c8 (patch) | |
tree | 0c5e3a165531b39c82fb70a67f9fb67cee593b51 /chrome | |
parent | ac4335caebf2fd72609b0674fa8091198261405e (diff) | |
download | chromium_src-7b30c97ea91c97af1fb352fb749a934e2386a3c8.zip chromium_src-7b30c97ea91c97af1fb352fb749a934e2386a3c8.tar.gz chromium_src-7b30c97ea91c97af1fb352fb749a934e2386a3c8.tar.bz2 |
Disables dragging of imgs in recently closed window section.
BUG=5836
TEST=see bug
Review URL: http://codereview.chromium.org/21490
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/resources/new_tab.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/resources/new_tab.html b/chrome/browser/resources/new_tab.html index d8f5fb5..b76b43d 100644 --- a/chrome/browser/resources/new_tab.html +++ b/chrome/browser/resources/new_tab.html @@ -743,6 +743,7 @@ function renderRecentlyClosedTabs(entries) { src:'url("chrome-ui://favicon/' + tab.url + '")', width:16, height:16}); + tabImg.onmousedown = function() { return false; } linkSpan.appendChild(tabImg); } linkSpan.appendChild(document.createTextNode(")")); |