From c4fbfd6c28b4546d295ce32c71d0b8c416ff952f Mon Sep 17 00:00:00 2001 From: "jst%mozilla.jstenback.com" Date: Thu, 14 Sep 2006 06:08:29 +0000 Subject: [PATCH] Backing out the fix for bug 235457 since it made typing URLs, and autocomplete in the the URL bar not work. --- suite/browser/navigator.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/suite/browser/navigator.js b/suite/browser/navigator.js index 89fcd038d6f7..70d7751c47c7 100644 --- a/suite/browser/navigator.js +++ b/suite/browser/navigator.js @@ -2239,10 +2239,7 @@ function createShowPopupsMenu(parent) { function popupBlockerMenuCommand(target) { var uri = target.getAttribute("uri"); if (uri) { - // Make sure we use the content window to open the popup to - // prevent it from being able to set flags it shoudn't be able to - // set. - window.content.open(uri, "", target.getAttribute("features")); + window.open(uri, "", target.getAttribute("features")); } }