bug 299901 - Middle click fail on links with nested tags, patch by gavin, r+sr=dveditz, a=jay

This commit is contained in:
mconnor%steelgryphon.com 2005-07-07 09:22:37 +00:00
Родитель 90d786d526
Коммит 8aa48465cc
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -4749,6 +4749,7 @@ function asyncOpenWebPanel(event)
linkNode = target;
}
else {
linkNode = event.originalTarget;
while (linkNode && !(linkNode instanceof HTMLAnchorElement))
linkNode = linkNode.parentNode;
// <a> cannot be nested. So if we find an anchor without an

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

@ -62,6 +62,7 @@
linkNode = target;
}
else if (!(target instanceof HTMLInputElement)) {
linkNode = event.originalTarget;
while (linkNode && !(linkNode instanceof HTMLAnchorElement))
linkNode = linkNode.parentNode;
// <a> cannot be nested. So if we find an anchor without an