backing out my patch for bug 95981 to fix blocker bug 96480

This commit is contained in:
darin%netscape.com 2001-08-23 18:58:25 +00:00
Родитель d5deeb87b0
Коммит b95283c439
2 изменённых файлов: 2 добавлений и 5 удалений

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

@ -44,10 +44,6 @@ interface nsILoadGroup : nsIRequest
* Accesses the default load request for the group. Each time a number
* of requests are added to a group, the defaultLoadRequest may be set
* to indicate that all of the requests are related to a base request.
*
* The load group inherits its load flags from the default load request.
* If the default load request is NULL, then the group's load flags are
* not changed.
*/
attribute nsIRequest defaultLoadRequest;

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

@ -388,7 +388,8 @@ nsLoadGroup::SetDefaultLoadRequest(nsIRequest *aRequest)
// Inherit the group load flags from the default load request
if (mDefaultLoadRequest)
mDefaultLoadRequest->GetLoadFlags(&mLoadFlags);
// Else, do not change the group's load flags (see bug 95981)
else
mLoadFlags = LOAD_NORMAL;
return NS_OK;
}