This commit is contained in:
Olli.Pettay%helsinki.fi 2006-04-27 11:00:28 +00:00
Родитель 8467966e20
Коммит 2f2359503a
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -594,7 +594,7 @@
// Listen for first load for lazy attachment to form fill controller
this.addEventListener("pageshow", this.onPageShow, true);
this.addEventListener("pagehide", this.onPageHide, true);
this.addEventListener("DOMPopupBlocked", this.onPopupBlocked, false);
this.addEventListener("DOMPopupBlocked", this.onPopupBlocked, true);
]]>
</constructor>

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

@ -688,8 +688,8 @@ function Startup()
// initiated by a web page script
addEventListener("fullscreen", onFullScreen, false);
addEventListener("PopupWindow", onPopupWindow, false);
addEventListener("DOMPopupBlocked", onPopupBlocked, false);
addEventListener("PopupWindow", onPopupWindow, true);
addEventListener("DOMPopupBlocked", onPopupBlocked, true);
// does clicking on the urlbar select its contents?
gClickSelectsAll = pref.getBoolPref("browser.urlbar.clickSelectsAll");