mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
Issue #2547 - Remove hidden network.dns.disablePrefetchFromHTTPS pref.
Resolves #2547
This commit is contained in:
parent
c94c6a5785
commit
d0e568577f
2 changed files with 0 additions and 19 deletions
|
|
@ -2802,20 +2802,9 @@ nsDocument::GetPrincipal()
|
|||
return NodePrincipal();
|
||||
}
|
||||
|
||||
extern bool sDisablePrefetchHTTPSPref;
|
||||
|
||||
void
|
||||
nsDocument::SetPrincipal(nsIPrincipal *aNewPrincipal)
|
||||
{
|
||||
if (aNewPrincipal && mAllowDNSPrefetch && sDisablePrefetchHTTPSPref) {
|
||||
nsCOMPtr<nsIURI> uri;
|
||||
aNewPrincipal->GetURI(getter_AddRefs(uri));
|
||||
bool isHTTPS;
|
||||
if (!uri || NS_FAILED(uri->SchemeIs("https", &isHTTPS)) ||
|
||||
isHTTPS) {
|
||||
mAllowDNSPrefetch = false;
|
||||
}
|
||||
}
|
||||
mNodeInfoManager->SetDocumentPrincipal(aNewPrincipal);
|
||||
|
||||
#ifdef DEBUG
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue