The CSS pseudo class :defined is not being applied to shadow DOM elements.
As an example if you use web components and have the following CSS:
:not(:defined) {
opacity: 0;
}
The web components will have opacity: 0 because they are not in the CustomElementsRegistry.