This was checked into the branch, but not trunk:

Here are the checkin notes (revision 1.22.2.2)

r=jar.  Checkin on behalf of dougt.  Fix for nsbeta2+ bug 47010.
The lock icon was not displaying on some https sites.  With these
changes, it does.
This commit is contained in:
dougt%netscape.com 2000-08-06 19:15:46 +00:00
parent 3c87455474
commit bf8bdf8481

View File

@ -414,14 +414,14 @@ nsSecureBrowserUIImpl::OnStateChange(nsIWebProgress* aWebProgress,
// A URL is starting to load...
if ((aProgressStateFlags & flag_start) &&
(aProgressStateFlags & flag_is_request))
(aProgressStateFlags & flag_is_network))
{ // check to see if we are going to mix content.
return CheckMixedContext(loadingURI);
}
// A URL has finished loading...
if ((aProgressStateFlags & flag_stop) &&
(aProgressStateFlags & flag_is_request))
(aProgressStateFlags & flag_is_network))
{
if (1) // FIX status from the flag...
{