Added temporary handling for about: URLs in HTTP url code

git-svn-id: svn://10.0.0.236/trunk@19536 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
vidur%netscape.com
1999-02-03 19:36:24 +00:00
parent 258ebe22f8
commit 19818eaa54
2 changed files with 27 additions and 14 deletions

View File

@@ -108,8 +108,10 @@ NS_InitializeHttpURLFactory(nsINetService* inet)
if (rv != NS_OK) goto done;
inet->RegisterProtocol(*new nsString("javascript"), urlf, NULL);
if (rv != NS_OK) goto done;
inet->RegisterProtocol(*new nsString("sockstub"), urlf, NULL);
if (rv != NS_OK) goto done;
inet->RegisterProtocol(*new nsString("sockstub"), urlf, NULL);
if (rv != NS_OK) goto done;
inet->RegisterProtocol(*new nsString("about"), urlf, NULL);
if (rv != NS_OK) goto done;
done:
#if 0