зеркало из https://github.com/mozilla/gecko-dev.git
Honour preventDefault() on modified link clicks b=319554 r+sr=jag
This commit is contained in:
Родитель
27bc83a6c0
Коммит
e5bdbc81c4
|
@ -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();
|
||||
|
|
Загрузка…
Ссылка в новой задаче