зеркало из https://github.com/mozilla/pjs.git
Honour preventDefault() on modified link clicks b=319554 r+sr=jag
This commit is contained in:
Родитель
13cf9c261f
Коммит
fda941bbf5
|
@ -170,7 +170,7 @@
|
||||||
// should always return true for click to go through
|
// should always return true for click to go through
|
||||||
function contentAreaClick(event)
|
function contentAreaClick(event)
|
||||||
{
|
{
|
||||||
if (!event.isTrusted) {
|
if (!event.isTrusted || event.getPreventDefault()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -193,7 +193,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pref && !isKeyPress && event.button == 1 &&
|
if (pref && !isKeyPress && event.button == 1 &&
|
||||||
!event.getPreventDefault() &&
|
|
||||||
pref.getBoolPref("middlemouse.contentLoadURL")) {
|
pref.getBoolPref("middlemouse.contentLoadURL")) {
|
||||||
if (middleMousePaste(event)) {
|
if (middleMousePaste(event)) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче