зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1297051 - CSPRO should not block mixed content. r=dveditz
This commit is contained in:
Родитель
b6d880aca1
Коммит
653bf080a7
|
@ -323,7 +323,8 @@ nsCSPContext::GetBlockAllMixedContent(bool *outBlockAllMixedContent)
|
|||
{
|
||||
*outBlockAllMixedContent = false;
|
||||
for (uint32_t i = 0; i < mPolicies.Length(); i++) {
|
||||
if (mPolicies[i]->hasDirective(nsIContentSecurityPolicy::BLOCK_ALL_MIXED_CONTENT)) {
|
||||
if (!mPolicies[i]->getReportOnlyFlag() &&
|
||||
mPolicies[i]->hasDirective(nsIContentSecurityPolicy::BLOCK_ALL_MIXED_CONTENT)) {
|
||||
*outBlockAllMixedContent = true;
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче