Index: chrome/browser/resources/history/history.js |
diff --git a/chrome/browser/resources/history/history.js b/chrome/browser/resources/history/history.js |
index 0f285966adf808ef26d31ec336be8e2068b9b8bc..ab2e866848dfb7c30652bf0cfdf71620547540d7 100644 |
--- a/chrome/browser/resources/history/history.js |
+++ b/chrome/browser/resources/history/history.js |
@@ -204,11 +204,13 @@ Visit.prototype.getResultDOM = function(propertyBag) { |
if (focusless) |
checkbox.tabIndex = -1; |
- // Clicking anywhere in the entryBox will check/uncheck the checkbox. |
- entryBox.setAttribute('for', checkbox.id); |
- entryBox.addEventListener('mousedown', entryBoxMousedown); |
- entryBox.addEventListener('click', entryBoxClick); |
- entryBox.addEventListener('keydown', this.handleKeydown_.bind(this)); |
+ if (!isMobileVersion()) { |
+ // Clicking anywhere in the entryBox will check/uncheck the checkbox. |
+ entryBox.setAttribute('for', checkbox.id); |
+ entryBox.addEventListener('mousedown', entryBoxMousedown); |
+ entryBox.addEventListener('click', entryBoxClick); |
+ entryBox.addEventListener('keydown', this.handleKeydown_.bind(this)); |
+ } |
} |
// Keep track of the drop down that triggered the menu, so we know |