Honour preventDefault() on modified link clicks b=319554 r+sr=jag

This commit is contained in:
neil%parkwaycc.co.uk 2006-07-14 21:15:46 +00:00
Родитель 27bc83a6c0
Коммит e5bdbc81c4
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -170,7 +170,7 @@
// should always return true for click to go through
function contentAreaClick(event)
{
if (!event.isTrusted) {
if (!event.isTrusted || event.getPreventDefault()) {
return true;
}
@ -193,7 +193,6 @@
}
if (pref && !isKeyPress && event.button == 1 &&
!event.getPreventDefault() &&
pref.getBoolPref("middlemouse.contentLoadURL")) {
if (middleMousePaste(event)) {
event.stopPropagation();