dragging a link into firefox and dropping it onto a tab opens it in the focused tab, and not the desired tab.

this regression was caused by bug #333791

r=mconnor
This commit is contained in:
sspitzer%mozilla.org 2006-07-27 21:31:59 +00:00
Родитель 07474d6a39
Коммит eee6e110a3
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1656,7 +1656,8 @@
<parameter name="aDragSession"/>
<body>
<![CDATA[
if (aDragSession.sourceNode.parentNode == this.mTabContainer &&
if (aDragSession.sourceNode &&
aDragSession.sourceNode.parentNode == this.mTabContainer &&
(aEvent.screenX >= aDragSession.sourceNode.boxObject.screenX &&
aEvent.screenX <= (aDragSession.sourceNode.boxObject.screenX +
aDragSession.sourceNode.boxObject.width)))