Bug 319554: default action can't be canceled for modifier+click events on links, r=mano

This commit is contained in:
gavin%gavinsharp.com 2006-09-21 17:39:36 +00:00
Родитель d51ce46276
Коммит c2625fca00
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -5376,7 +5376,7 @@ function asyncOpenWebPanel(event)
// should always return true for click to go through
function contentAreaClick(event, fieldNormalClicks)
{
if (!event.isTrusted) {
if (!event.isTrusted || event.getPreventDefault()) {
return true;
}
@ -5518,7 +5518,6 @@ function asyncOpenWebPanel(event)
}
}
if (event.button == 1 &&
!event.getPreventDefault() &&
gPrefService.getBoolPref("middlemouse.contentLoadURL") &&
!gPrefService.getBoolPref("general.autoScroll")) {
middleMousePaste(event);