# Summary
The 'noreferrer' link relation currently governs both referrer policy for a navigation, as well as the 'opener' attribute of any newly created browsing context. The 'noopener' link relation and window feature gives developers the ability to control the latter without opting into the former.
# Motivation
For "Secure Contexts", we'd like to distinguish between popups that are safe to consider "secure", and popups that have to be considered non-secure because they would allow a non-secure context direct DOM access. We can be a little smarter about how we do that, and allow developers to navigate to contexts which ought to be considered secure, if we break the direct relationship between the two windows by dropping `window.opener` and returning `null` from `window.open`.
It's also just a good idea to explain the magic behind `noreferrer` in a way that's exposed to the platform so that the two behaviors aren't tied up together.
# Compatability RiskLow. This doesn't effect the existing `noreferrer` behavior, and in the worst case, we can just drop it.
# Requesting approval to ship?
Yes.