I added logic to the viewers browser window to disable javascript initiated popups during web crawling

This commit is contained in:
kipp%netscape.com 1999-10-29 02:05:16 +00:00
Родитель a4cb24fb47
Коммит 2a1378d3ff
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -1911,6 +1911,14 @@ nsBrowserWindow::NewWebShell(PRUint32 aChromeMask,
{
nsresult rv = NS_OK;
if (mWebCrawler) {
if (mWebCrawler->Crawling() || mWebCrawler->LoadingURLList()) {
// Do not fly javascript popups when we are crawling
aNewWebShell = nsnull;
return NS_ERROR_NOT_IMPLEMENTED;
}
}
// Create new window. By default, the refcnt will be 1 because of
// the registration of the browser window in gBrowsers.
nsNativeBrowserWindow* browser;