Bug 1781201 - Adjust NS_NewURI implementation to create nsStandardURL for uuid schemes; r=necko-reviewers,valentin

Otherwise BasePrincipal::CreateContentPrincipal would create null principals
for uuid schemes.

Differential Revision: https://phabricator.services.mozilla.com/D176880
This commit is contained in:
Jan Varga 2023-05-04 04:50:44 +00:00
Родитель 74d7f01f40
Коммит ccf2da1129
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1920,7 +1920,7 @@ nsresult NS_NewURI(nsIURI** aURI, const nsACString& aSpec,
return handler->NewURI(aSpec, aCharset, aBaseURI, aURI);
}
if (scheme.EqualsLiteral("indexeddb")) {
if (scheme.EqualsLiteral("indexeddb") || scheme.EqualsLiteral("uuid")) {
return NS_MutateURI(new nsStandardURL::Mutator())
.Apply(&nsIStandardURLMutator::Init, nsIStandardURL::URLTYPE_AUTHORITY,
0, aSpec, aCharset, aBaseURI, nullptr)