Open
Bug 1970251
Opened 2 months ago
Updated 2 months ago
Follow up on FIXME in BasePrincipal::CheckMayLoadHelper
Categories
(Core :: Security: CAPS, task)
Core
Security: CAPS
Tracking
()
NEW
People
(Reporter: dholbert, Unassigned)
References
Details
I noticed this when reading some code:
nsresult BasePrincipal::CheckMayLoadHelper(nsIURI* aURI,
bool aAllowIfInheritsPrincipal,
bool aReport,
uint64_t aInnerWindowID) {
...
if (aReport) {
// FIXME: Once bug 1900706 is complete, reporting can be updated to work
// off-main-thread.
nsScriptSecurityManager::ReportError("CheckSameOriginError", prinURI, aURI,
mOriginAttributes.IsPrivateBrowsing(),
aInnerWindowID);
}
Bug 1900706 is in fact complete, so maybe we can take action on that FIXME now? (Not sure if it's high priority enough to do right now, but maybe it'd be worth dropping some more notes about what a fix might look like into this bug, and we can morph this bug into a more specific followup to track addressing this comment when cycles are available?)
(historical note: this FIXME was added in this commit for bug 1901387.)
Reporter | ||
Updated•2 months ago
|
Summary: Follow up on FIXMEin BasePrincipal::CheckMayLoadHelper → Follow up on FIXME in BasePrincipal::CheckMayLoadHelper
You need to log in
before you can comment on or make changes to this bug.
Description
•