Bug 853456 - Walk up DOM tree to find target of links. r=mfinkle

This commit is contained in:
Wes Johnston 2013-04-23 10:10:44 -07:00
Родитель 11073b0e0a
Коммит fcf2264c5f
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -133,8 +133,12 @@ let WebAppRT = {
handleEvent: function(event) {
let target = event.target;
if (!(target instanceof HTMLAnchorElement) ||
target.getAttribute("target") != "_blank") {
// walk up the tree to find the nearest link tag
while(target && !(target instanceof HTMLAnchorElement)) {
target = target.parentNode;
}
if (!target || target.getAttribute("target") != "_blank") {
return;
}