Bug 335586, r=mconnor+neil

git-svn-id: svn://10.0.0.236/trunk@195560 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Olli.Pettay%helsinki.fi 2006-04-27 11:00:28 +00:00
parent c1db03c1b4
commit d4b33c6ef5
2 changed files with 3 additions and 3 deletions

View File

@ -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>

View File

@ -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");