зеркало из https://github.com/mozilla/gecko-dev.git
Add some weak support for _main until I can hack the C++ to fully support it like _content.
This commit is contained in:
Родитель
e69b3c6016
Коммит
290a1af75e
|
@ -3823,7 +3823,9 @@ function asyncOpenWebPanel(event)
|
||||||
if (linkNode) {
|
if (linkNode) {
|
||||||
if (fieldNormalClicks && event.button == 0 && !event.ctrlKey && !event.shiftKey &&
|
if (fieldNormalClicks && event.button == 0 && !event.ctrlKey && !event.shiftKey &&
|
||||||
!event.altKey && !event.metaKey &&
|
!event.altKey && !event.metaKey &&
|
||||||
(!linkNode.getAttribute("target") || linkNode.getAttribute("target") == "_content")) {
|
(!linkNode.getAttribute("target") || linkNode.getAttribute("target") == "_content") ||
|
||||||
|
linkNode.getAttribute("target") == "_main") // IE uses _main, SeaMonkey uses _content, we support both
|
||||||
|
{
|
||||||
var url = getShortcutOrURI(linkNode.href);
|
var url = getShortcutOrURI(linkNode.href);
|
||||||
if (!url)
|
if (!url)
|
||||||
return false;
|
return false;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче